|
|
|
|
|
WLanguage procedure associated with YesNoAsynchronous Procedure ("Callback") called by YesNoAsynchronous when the user clicks one of the buttons in the dialog box. This procedure can be a local, global, internal or lambda procedure. YesNoAsynchronous("Do you want to close this window?", Procedure_YesNo)
INTERNAL PROCEDURE Procedure_YesNo(nResponse int)
IF nResponse = Yes THEN
ToastDisplay("You want to close the window!")
ELSE
ToastDisplay("You don't want to close the window!")
END
END
Syntax
YesNoAsynchronous_Callback(<Selected button>)
<Selected button>: Integer or Integer constant Identifies the button selected by the user: | | | No | 0 | The user selected [NO] or closed the dialog box via the 'X' icon. | Yes | 1 | The user selected [YES] |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|