|
|
|
|
|
Dialog box management functions
The following functions are used to manage dialog boxes:
| | Confirm | Displays a message in a standard dialog box that proposes "Yes", "No", "Cancel" and returns the user's choice. | ConfirmAsynchronous | Displays a non-blocking message in a standard dialog box with the answers "Yes", "No", "Cancel" and calls a WLanguage procedure with the user's response. | Dialog | Displays a message box and returns the value of the button clicked by the user. | DialogAsynchronous | Displays a non-blocking message box and calls a WLanguage procedure with the value of the button clicked by the user. | Error | Displays a custom error message in a system error window. | ErrorAsynchronous | Displays a custom error message in a non-blocking system error window. | ErrorBuild | Displays a custom error message in a system error window. | ErrorWithTimeout | Displays a custom error message in a system error window for a set amount of time. | ErrorWithTimeoutAsynchronous | Displays a custom error message in a non-blocking system error window for a given amount of time. | Info | Displays a custom message in a system information window. | InfoAsynchronous | Displays a non-blocking custom message in a system information window. | InfoBuild | Displays a custom message in a system information window. | InfoWithTimeout | Displays an information message in a system information window for a set amount of time | InfoWithTimeoutAsynchronous | Displays a custom message in a non-blocking system information window for a given amount of time. | Input | Displays a message allowing the user to type an information. | Message | Displays or removes a message from the status bar of the current window or browser. | OKCancel | Displays a message in a standard dialog box that proposes "OK" and "Cancel" and returns the user's choice. | OKCancelAsynchronous | Displays a message in a standard non-blocking dialog box with the answers "OK" and "Cancel" and calls a WLanguage procedure with the user's response. | ProgressBar | Displays a progress bar in the status bar of current window. | StatusBarAddCell | Adds a new cell to the status bar of the current window. | StatusBarDeleteCell | Deletes a cell from the status bar of the current window. | Warning | Displays a custom message in a system warning window. | WarningAsynchronous | Displays a custom message in a non-blocking system warning window. | YesNo | Displays a message in a standard dialog box that proposes "Yes" and "No" and returns the user's choice. | YesNoAsynchronous | Displays a message in a standard non-blocking dialog box with the answers "Yes" and "No" and calls a WLanguage procedure with the user's response. |
Other functions are also available to manage the tootips:
| | ShowToolTip | Enables or disables the mechanism for displaying the control tooltips. | ToolTipColor | Modifies the colors used for displaying the tooltips. | ToolTipDelay | Used to modify:- the timeout before displaying the tooltips.
- the display duration of the tooltips.
|
Related Examples:
|
Unit examples (WINDEV): BalloonTip
[ + ] Displaying BalloonTip. A BalloonTip is an advanced tooltip. In most cases, this BalloonTip is displayed above an icon in the taskbar. A BalloonTip is used to display an information to the user without interrupting his work (when the application is in background or when it is minimized in the Windows "Systray" for example). Unlike the dialog boxes displayed by the WLanguage functions such as Info, Warning or Error, a BalloonTip is not locking. It is used to display messages whose importance and type can be configured. A BalloonTip contains: - an icon used to identify the type of message - a title - a "Close" button - a specific message.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|