SqlStudioMessageBox.Show Method (IWin32Window, Exception, MessageBoxButtons, MessageBoxIcon)
Displays a message box in front of the specified object with an exception that is thrown when an error occurs during application execution. The message box has the specified 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 ( _
owner As IWin32Window, _
error As Exception, _
buttons As MessageBoxButtons, _
icon As MessageBoxIcon _
) As DialogResult
'Usage
Dim owner As IWin32Window
Dim error As Exception
Dim buttons As MessageBoxButtons
Dim icon As MessageBoxIcon
Dim returnValue As DialogResult
returnValue = SqlStudioMessageBox.Show(owner, error, _
buttons, icon)
public static DialogResult Show(
IWin32Window owner,
Exception error,
MessageBoxButtons buttons,
MessageBoxIcon icon
)
public:
static DialogResult Show(
IWin32Window^ owner,
Exception^ error,
MessageBoxButtons buttons,
MessageBoxIcon icon
)
static member Show :
owner:IWin32Window *
error:Exception *
buttons:MessageBoxButtons *
icon:MessageBoxIcon -> DialogResult
public static function Show(
owner : IWin32Window,
error : Exception,
buttons : MessageBoxButtons,
icon : MessageBoxIcon
) : DialogResult
Parameters
- owner
Type: System.Windows.Forms.IWin32Window
An implementation of IWin32Window that owns the modal dialog box.
- error
Type: System.Exception
Represents an error that occurs during application execution.
- 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.