ebRetry (constant)

Description Returned by the MsgBox function when the Retry button is chosen.
Comments This constant is equal to 4.
Example This example displays a Retry message box.
Sub Main()
  rc% = MsgBox("Unable to open file.",ebRetryCancel)
  If rc% = ebRetry Then
    MsgBox "User selected Retry."
  End If
End Sub
See Also MsgBox (function); MsgBox (statement)