ebIgnore (constant)

Description Returned by the MsgBox function when the Ignore button is chosen.
Comments This constant is equal to 5.
Example This example displays a critical error dialog box and sees what the user wants to do.
Sub Main()
  rc% = MsgBox("Printer out of paper.",ebAbortRetryIgnore)
  If rc% = ebIgnore Then
    'Continue printing here.
  End If
End Sub
See Also MsgBox (function); MsgBox (statement).