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!

MessageBox.Show (String)

Displays a message box with specified text.

[Visual Basic]
Overloads Public Shared Function Show( _
   ByVal text As String _
) As DialogResult
[C#]
public static DialogResult Show(
   string text
);
[C++]
public: static DialogResult Show(
   String* text
);
[JScript]
public static function Show(
   text : String
) : DialogResult;

Parameters

text
The text to display in the message box.

Return Value

The MessageBox.OK value of the DialogResult class.

Remarks

By default, the message box displays an OK button. The message box does not contain a caption in the title.

See Also

MessageBox Class | MessageBox Members | System.WinForms Namespace | MessageBox.Show Overload List