Useful code for using abort retry or ignore options.
Useful code for using abort retry or ignore options.
API Declarations
Dim Response As Integer
Rate Useful code for using abort retry or ignore options.
(1(1 Vote))
'display message box
Dim Response As Integer
Response = MsgBox("Choose one of the following", vbAbortRetryIgnore, "Options")
Select Case Response
Case vbAbort
End 'Close and cancel
Case vbRetry
Msgbox "You retried"
Case vbIgnore
MsgBox "You ignored"
End Select
End Sub
Useful code for using abort retry or ignore options. Comments
No comments yet — be the first to post one!
Post a Comment