ExceptionMessageBoxButtons Enumeration

Specifies the button to display in the exception message box.

Namespace: Microsoft.SqlServer.MessageBox
Assembly: Microsoft.ExceptionMessageBox (in microsoft.exceptionmessagebox.dll)
Syntax

VisualBasicDeclaration
Public Enumeration ExceptionMessageBoxButtons
CSharp
public enum ExceptionMessageBoxButtons
ManagedCPlusPlus
public enum class ExceptionMessageBoxButtons
JSharp
public enum ExceptionMessageBoxButtons
JScript
public enum ExceptionMessageBoxButtons
Members

Member nameDescription
AbortRetryIgnoreDisplay the Abort, Retry, and Ignore buttons.
CustomDisplay buttons with custom button text.
OKDisplay the OK button.
OKCancelDisplay the OK and Cancel buttons.
RetryCancelDisplay the Retry and Cancel buttons.
YesNoDisplay Yes and No buttons.
YesNoCancelDisplay Yes, No, and Cancel buttons.
Remarks

When you use Custom, you must call SetButtonText to set the button text before you show the message box. After the user dismisses the exception message box, call CustomDialogResult to determine which button the user clicked.


Example

CSharp
// Define the message and caption to display.
string str = @"Are you sure you want to delete file 'c:\somefile.txt'?";
string caption = "Confirm File Deletion";

// Show the exception message box with Yes and No buttons.
ExceptionMessageBox box = new ExceptionMessageBox(str,
    caption, ExceptionMessageBoxButtons.YesNo,
    ExceptionMessageBoxSymbol.Question,
    ExceptionMessageBoxDefaultButton.Button2);

if (DialogResult.Yes == box.Show(this))
{
    // Delete the file.
}
VisualBasic
' Define the message and caption to display.
Dim str As String = "Are you sure you want to delete file 'c:\somefile.txt'?"
Dim caption As String = "Confirm File Deletion"

' Show the exception message box with Yes and No buttons.
Dim box As ExceptionMessageBox = New ExceptionMessageBox(str, _
 caption, ExceptionMessageBoxButtons.YesNo, _
 ExceptionMessageBoxSymbol.Question, _
 ExceptionMessageBoxDefaultButton.Button2)

If Windows.Forms.DialogResult.Yes = box.Show(Me) Then
    ' Delete the file.
End If
Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.

Target Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.
See Also

Tags :


Page view tracker