SqlStudioMessageBox.Show Method (IWin32Window, String, MessageBoxButtons)
Displays a message box in front of the specified object and with specified text and buttons.
Namespace: Microsoft.SqlServer.Management.Controls
Assembly: Microsoft.SqlServer.Management.Controls (in Microsoft.SqlServer.Management.Controls.dll)
Syntax
'Declaration
Public Shared Function Show ( _
owner As IWin32Window, _
text As String, _
buttons As MessageBoxButtons _
) As DialogResult
'Usage
Dim owner As IWin32Window
Dim text As String
Dim buttons As MessageBoxButtons
Dim returnValue As DialogResult
returnValue = SqlStudioMessageBox.Show(owner, text, _
buttons)
public static DialogResult Show(
IWin32Window owner,
string text,
MessageBoxButtons buttons
)
public:
static DialogResult Show(
IWin32Window^ owner,
String^ text,
MessageBoxButtons buttons
)
static member Show :
owner:IWin32Window *
text:string *
buttons:MessageBoxButtons -> DialogResult
public static function Show(
owner : IWin32Window,
text : String,
buttons : MessageBoxButtons
) : DialogResult
Parameters
- owner
Type: System.Windows.Forms.IWin32Window
An implementation of IWin32Window that owns the modal dialog box.
- text
Type: System.String
The text to display in the message box.
- buttons
Type: System.Windows.Forms.MessageBoxButtons
One of the MessageBoxButtons values that specifies which buttons to display in the message box.
Return Value
Type: System.Windows.Forms.DialogResult
One of the DialogResult values.