MESSAGEBOX: Difference between revisions
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
m (Re-order description) |
m (Remove `lower case` requirement) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
{{PageSyntax}} | {{PageSyntax}} | ||
: '''_MESSAGEBOX''' [{{Parameter|title$}}][, {{Parameter|message$}}[, {{Parameter|iconType$}}] | : '''_MESSAGEBOX''' [{{Parameter|title$}}][, {{Parameter|message$}}][, {{Parameter|iconType$}}] | ||
Line 16: | Line 16: | ||
* All parameters are optional | * All parameters are optional | ||
* Not using any parameters will show a blank dialog box with an OK button | * Not using any parameters will show a blank dialog box with an OK button | ||
* The dialog box automatically becomes a modal window if the application window is visible | * The dialog box automatically becomes a modal window if the application window is visible | ||
{{PageAvailability}} | {{PageAvailability}} | ||
* '''QB64-PE v3.4 and up''' | * '''QB64-PE v3.4.0 and up''' | ||
Line 35: | Line 34: | ||
* [[_NOTIFYPOPUP]] | * [[_NOTIFYPOPUP]] | ||
* [[_MESSAGEBOX (function)]] | * [[_MESSAGEBOX (function)]] | ||
* [[_INPUTBOX$]] | |||
* [[_SELECTFOLDERDIALOG$]] | * [[_SELECTFOLDERDIALOG$]] | ||
* [[ | * [[_COLORCHOOSERDIALOG]] | ||
* [[_OPENFILEDIALOG$]] | * [[_OPENFILEDIALOG$]] | ||
* [[_SAVEFILEDIALOG$]] | * [[_SAVEFILEDIALOG$]] |
Latest revision as of 02:56, 27 June 2024
The _MESSAGEBOX statement displays a message dialog box, which presents a message to the user.
Syntax
- _MESSAGEBOX [title$][, message$][, iconType$]
Parameters
- title$ is the dialog box title
- message$ is the dialog box message
- iconType$ is the icon type that is displayed inside the dialog box (this can be "info", "warning", or "error")
Description
- All parameters are optional
- Not using any parameters will show a blank dialog box with an OK button
- The dialog box automatically becomes a modal window if the application window is visible
Availability
- QB64-PE v3.4.0 and up
Examples
- Example
- Hello, world with common dialogs
username$ = _INPUTBOX$("Hello App", "Enter your name:", "anonymous") IF username$ <> "" THEN _MESSAGEBOX "Hello App", "Hello " + username$, "info" |
See also
- _NOTIFYPOPUP
- _MESSAGEBOX (function)
- _INPUTBOX$
- _SELECTFOLDERDIALOG$
- _COLORCHOOSERDIALOG
- _OPENFILEDIALOG$
- _SAVEFILEDIALOG$