다음을 통해 공유


ExceptionMessageBox.Show 메서드 (IWin32Window)

Shows the exception message box as a modal dialog box centered on the parent window.

네임스페이스:  Microsoft.SqlServer.MessageBox
어셈블리:  Microsoft.ExceptionMessageBox(Microsoft.ExceptionMessageBox.dll)

구문

‘선언
Public Function Show ( _
    owner As IWin32Window _
) As DialogResult
‘사용 방법
Dim instance As ExceptionMessageBox 
Dim owner As IWin32Window 
Dim returnValue As DialogResult 

returnValue = instance.Show(owner)
public DialogResult Show(
    IWin32Window owner
)
public:
DialogResult Show(
    IWin32Window^ owner
)
member Show : 
        owner:IWin32Window -> DialogResult
public function Show(
    owner : IWin32Window
) : DialogResult

매개 변수

반환 값

유형: System.Windows.Forms.DialogResult
The DialogResult of the button clicked by the user.

주의

When Buttons is Custom, Show always returns Cancel. Use CustomDialogResult to determine which button the user clicked.

When a nullnull 참조(Visual Basic에서는 Nothing) value is supplied for Owner, the exception message box appears on the Windows Taskbar. We recommend that you pass the parent window object instead.

          try
            {
                // Do something that may generate an exception.
                throw new ApplicationException("An error has occured");
            }
            catch (ApplicationException ex)
            {
                // Define a new top-level error message.
                string str = "The action failed.";

                // Add the new top-level message to the handled exception.
                ApplicationException exTop = new ApplicationException(str, ex);
                exTop.Source = this.Text;

                // Show an exception message box with an OK button (the default).
                ExceptionMessageBox box = new ExceptionMessageBox(exTop);
                box.Show(this);
            }
Try
    ' Do something that may generate an exception.
    Throw New ApplicationException("An error has occured")
Catch ex As ApplicationException
    ' Define a new top-level error message.
    Dim str As String = "The action failed."

    ' Add the new top-level message to the handled exception.
    Dim exTop As ApplicationException = New ApplicationException(str, ex)
    exTop.Source = Me.Text

    ' Show an exception message box with an OK button (the default).
    Dim box As ExceptionMessageBox = New ExceptionMessageBox(exTop)
    box.Show(Me)
End Try

참고 항목

참조

ExceptionMessageBox 클래스

Show 오버로드

Microsoft.SqlServer.MessageBox 네임스페이스