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 (IWin32Window, String, String)

Displays a message box with specified text and caption.

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

Parameters

owner
The Windows owner of the message box.
text
The text to display in the message box.
caption
The text to display in the title bar of the message box.

Return Value

The MessageBox.OK value of the DialogResult class.

Remarks

By default, the message box displays an OK button.

See Also

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