SqlStudioMessageBox.Show Method (String, MessageBoxButtons, MessageBoxIcon)
Displays a message box with the specified text, buttons, and icon.
Namespace: Microsoft.SqlServer.Management.Controls
Assembly: Microsoft.SqlServer.Management.Controls (in Microsoft.SqlServer.Management.Controls.dll)
Syntax
'Declaration
Public Shared Function Show ( _
text As String, _
buttons As MessageBoxButtons, _
icon As MessageBoxIcon _
) As DialogResult
'Usage
Dim text As String
Dim buttons As MessageBoxButtons
Dim icon As MessageBoxIcon
Dim returnValue As DialogResult
returnValue = SqlStudioMessageBox.Show(text, buttons, _
icon)
public static DialogResult Show(
string text,
MessageBoxButtons buttons,
MessageBoxIcon icon
)
public:
static DialogResult Show(
String^ text,
MessageBoxButtons buttons,
MessageBoxIcon icon
)
static member Show :
text:string *
buttons:MessageBoxButtons *
icon:MessageBoxIcon -> DialogResult
public static function Show(
text : String,
buttons : MessageBoxButtons,
icon : MessageBoxIcon
) : DialogResult
Parameters
- 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.
- icon
Type: System.Windows.Forms.MessageBoxIcon
One of the MessageBoxIcon values that specifies which icon to display in the message box.
Return Value
Type: System.Windows.Forms.DialogResult
One of the DialogResult values.