NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IUIService.ShowError

[To be supplied.]

Overload List

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);

See Also

IUIService Interface | IUIService Members | System.WinForms.Design Namespace