Function BoxAbortRetryIgnore( Question: String ): Integer
Description
Displays an Isah dialog box containing the following buttons: Abort, Retry and Ignore.
Remarks
The default button is Abort. For more information on possible return values, please refer to IsahForms Object.
Example
Sub Main()
Dim
Answer
Answer = Application.IsahForms.BoxAbortRetryIgnore("
An error occurred
")
If
Answer = 5
then
MsgBox
"
Ignore
"
End If
End Sub