@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: Represents possible dialogbox command id values by the MB_GetString function. !!!!C# Definition: /// <summary> /// Represents possible dialogbox command id values by the MB_GetString function. /// </summary> public enum DialogBoxCommandID : int { IDOK = 0, IDCANCEL = 1, IDABORT = 2, IDRETRY = 3, IDIGNORE = 4, IDYES = 5, IDNO = 6, IDCLOSE = 7, IDHELP = 8, IDTRYAGAIN = 9, IDCONTINUE = 10 } !!!!VB Definition: Public Enum DialogBoxCommandID IDOK = 0 IDCANCEL = 1 IDABORT = 2 IDRETRY = 3 IDIGNORE = 4 IDYES = 5 IDNO = 6 IDCLOSE = 7 IDHELP = 8 IDTRYAGAIN = 9 IDCONTINUE = 10 End Enum !!!!Notes: None. Documentation: DialogBoxCommandID@msdn on MSDN
Edit Enums.DialogBoxCo...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.