Share via


SqlStudioMessageBox.Show Method (String, String, MessageBoxIcon)

Displays a message box with the specified text, caption, 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, _
    caption As String, _
    icon As MessageBoxIcon _
) As DialogResult
'Usage
Dim text As String
Dim caption As String
Dim icon As MessageBoxIcon
Dim returnValue As DialogResult

returnValue = SqlStudioMessageBox.Show(text, caption, _
    icon)
public static DialogResult Show(
    string text,
    string caption,
    MessageBoxIcon icon
)
public:
static DialogResult Show(
    String^ text, 
    String^ caption, 
    MessageBoxIcon icon
)
static member Show : 
        text:string * 
        caption:string * 
        icon:MessageBoxIcon -> DialogResult 
public static function Show(
    text : String, 
    caption : String, 
    icon : MessageBoxIcon
) : DialogResult

Parameters

  • text
    Type: System.String
    The text to display in the message box.
  • caption
    Type: System.String
    The text to display in the title bar of the message box.

Return Value

Type: System.Windows.Forms.DialogResult
One of the DialogResult values.