|
|
|
|
|
- Features of the dialog box
- Line break in the dialog box
- Miscellaneous
- Emulation
- Background application: Specific to Android 10 and higher
Confirm (Function) In french: Confirmer Displays a message in a standard dialog box that proposes "Yes", "No", "Cancel" and returns the user's choice. Remarks: - This is a modal warning window. To continue running the application, the user must validate one of the buttons.
To avoid blocking the application, use ConfirmAsynchronous. - WINDEV allows you to apply the skin template of your project to this dialog box. For more details, see Customizing dialog boxes.
Remarks Features of the dialog box - The message is aligned to the left.
- The text of the buttons changes according to the language used by Windows at runtime (or used by the browser, in the case of a WEBDEV website).
- The maximum number of characters cannot exceed 4096. If a larger string is passed as parameter, it will be truncated.
- The icon displayed (exclamation mark in a WINDEV application, question mark in a WEBDEV application) cannot be modified.
- The title of the dialog box corresponds to the title of the current window (or page).
To comply with the system specifications, the title of dialog box is empty by default. To define this title, use NextTitle. - To modify or define the title of dialog box, use NextTitle.
Line break in the dialog box The CR string (Carriage Return) can be used to force a break to the next line. For example: Confirm("La fiche XXX a été modifiée." + CR + ...
"Voulez-vous la sauver avant de quitter?")
is equivalent to: Confirm("La fiche XXX a été modifiée.", ...
"Voulez-vous la sauver avant de quitter?")
You also have the ability to use the syntax of multiline strings. For example: Confirm(
[
La fiche XXX a été modifiée.
Voulez-vous la sauver avant de quitter?
])
- Timers (TimerSys) are not stopped when this function is called.
- Windows events are not stopped when this function is called.
- DelayBeforeClosing limits how long the message is displayed. The dialog box is automatically closed. For question or confirmation dialog boxes, the default button corresponds to the expected answer.
- The text of the buttons is displayed in the system language.
- If your project uses pre-launched sessions, this function must not be used in the project initialization event. This function must be used in the "Initialization in pre-launched session mode" event.
- This function must not be used:
- in the "Resize" event of the window. Otherwise, the application will be locked.
- in the "Change the orientation" event of the window.
- in the "Move to the foreground" event associated with the project.
Note: The function can also be used in the "Bring to foreground" event of a window.. - in a thread.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|