[To be supplied.]
Displays the given error message in a message box. This properly integrates the message box display with the development environment.
[Visual Basic] Overloads Sub ShowError(String)
[C#] void ShowError(String);
[C++] void ShowError(String*) = 0;
[JScript] function ShowError(String);
Displays the given Exception and it's info in a message box. This properly integrates the message box display with the development environment.
[Visual Basic] Overloads Sub ShowError(Exception, String)
[C#] void ShowError(Exception, String);
[C++] void ShowError(Exception*, String) = 0;
[JScript] function ShowError(Exception, String);
Displays the given Excception and it's info in a message box. This properly integrates the message box display with the development environment.
[Visual Basic] Overloads Sub ShowError(Exception)
[C#] void ShowError(Exception);
[C++] void ShowError(Exception*) = 0;
[JScript] function ShowError(Exception);
IUIService Interface | IUIService Members | System.WinForms.Design Namespace