- Scope of DelayBeforeClosing
DelayBeforeClosing (Function) In french: DélaiAvantFermeture Limits the display duration of a window or dialog box. If no user action is performed, when the specified amount of time is reached: - for a window, the code of a window button will be run.
- for a dialog box, the dialog box is automatically closed. For question or confirmation dialog boxes, the default button corresponds to the expected answer.
The amount of time specified for the automatic closing is ignored in the following cases: - when the user clicks a button.
- if the user modifies a control.
- if the user presses any keyboard key.
Remark: The following dialog boxes are taken into account: By default, the dialog boxes are locking: the application is locked as long as these windows are opened. New in version 28
// Close the dialog box in 2 seconds DelayBeforeClosing(200) Error("The application will be ended") EndProgram()
// Run the code of BTN_CloseButton in 5 seconds DelayBeforeClosing(MyWindow, BTN_Close, 500) // The code of BTN_Close button calls the Close function
Syntax
Timeout before closing the dialog boxes Hide the details
<Result> = DelayBeforeClosing([<Timeout>])
<Result>: Integer Timeout that was previously defined (before the modification performed by DelayBeforeClosing). <Timeout>: Optional integer or optional Duration New timeout before closing the dialog boxes of application (expressed in hundredths of a second). This parameter can be: - an integer corresponding to the number of hundredths of a second,
- a Duration variable,
- the duration in a readable format (e.g., 1 s or 10 ms).
If this parameter is set to 0 or if it is not specified, the timeout is endless (default case): the dialog boxes are not automatically closed.
Timeout before closing the windows Hide the details
<Result> = DelayBeforeClosing(<Name of the window> , <Button name> [, <Timeout>])
<Result>: Integer Timeout that was previously defined (before the modification performed by DelayBeforeClosing). <Name of the window>: Character string Name of window for which an automatic process will be managed. <Button name>: Character string Name of button whose code will be run after the specified timeout. If the window must be closed, the button code must contain Close. <Timeout>: Optional integer or optional Duration Amount of time before running the click code of specified button (expressed in hundredths of a second). This parameter can be: - an integer corresponding to the number of hundredths of a second,
- a Duration variable,
- the duration in a readable format (e.g., 1 s or 10 ms).
If this parameter is set to 0 or if it is not specified, the timeout is endless (default case): the specified window will not be automatically closed and the timeout that was previously defined is canceled. Remarks Scope of DelayBeforeClosing - Dialog boxes: DelayBeforeClosing is taken into account for all the dialog boxes opened by the application, regardless of the code where this function is called.
To restore a standard operating mode, use DelayBeforeClosing and specify no timeout. - Window: DelayBeforeClosing only applies to the specified window. The function is disabled when this window is closed: if this window is re-opened (Open), the window will not be automatically closed. You need to call DelayBeforeClosing again.
Business / UI classification: UI Code
This page is also available for…
|
|
|
|