Function BoxYesNoDefaultNo( Question: String ): Integer
Description
Displays an Isah dialog box containing the following buttons: Yes and No.
Remarks
The default button is No. For more information on possible return values, please refer to IsahForms Object.
Example
Sub Main()
If
Proceed("
Do you want to process the remainder
")
then
MsgBox
"
OK
"
End If
End Sub
Function
Proceed( ProceedStr )
Proceed = (Application.IsahForms.BoxYesNoDefaultNo( ProceedStr ) = 6)
End Function