Function	BoxRetryCancel( Question: String ): Integer
Description
Displays an Isah dialog box containing the following buttons: Retry and Cancel.
Remarks
The default button is Retry. For more information on possible return values, please refer to IsahForms Object.
Example
  Sub Main()
    Dim Answer
    Dim IsahForms
    Set IsahForms = Application.IsahForms
    Answer = IsahForms.BoxRetryCancel("Error while printing")
    If Answer = 2
    MsgBox "Print again"
    End If
  End Sub