Previous Topic

Next Topic

Inhoudsopgave

Book Index

BoxYesNo Function

Function Function BoxYesNo( Question: String ): Integer

Description

Displays an Isah dialog box containing the following buttons: Yes and No.

Remarks

The default button is Yes. 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.BoxYesNo( ProceedStr ) = 6)

End Function