|
|
|
|
- Features of the dialog box
- Line break in the dialog box
- Miscellaneous
- Emulation
- Application in the background: Specific case from Android 10
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 site).
- 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("The XXX form was modified." + CR + ... "Do you want to save it before exiting?")
is equivalent to: Confirm("The XXX form was modified.", ... "Do you want to save it before exiting?")
You also have the ability to use the syntax of multiline strings. For example: Confirm( [ The XXX form has been modified. Â Do you want to save changes before closing? ])
- Timers (TimerSys) are not stopped when this function is called.
Windows events are not stopped when this function is called. You can use the code wizard to enter the function in the code editor. Depending on the characteristics entered in the wizard, the function used can be different in the code that is automatically generated.  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. It must be used in the "Initialize project after connecting to the site" event. This function must not be used: - in the "Resizing" event of the window. Otherwise, the application will be locked.
- in the "Changing the orientation" event of the window.
- in the "Move to the foreground" event associated with the project.
Remark: However, the function can be used in the "Move to the foreground" event of a window. - in a thread.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|