Programmer Guide/Macro Library/UM: Difference between revisions
From STX Wiki
Jump to navigationJump to search
No edit summary |
|||
Line 1: | Line 1: | ||
{{DISPLAYTITLE: | {{DISPLAYTITLE:UM or EM - Display a User-Message (UM) or Error-Message (EM)}} | ||
UM <var>text</var> [; <var>title</var> ] | |||
:Display the argument <var>text</var> in a message box with caption <var>title</var> (default: <code>UM</code>) and only the button <code>OK</code>. This function is a shortcut for <code>MSGBOX MSG <var>text</var> [; <var>title</var>=UM]</code>. | |||
EM [ <var>rc</var>=-1 [ <var>level</var>=2 ]] ; <var>text</var> [; <var>title</var> ] | |||
=====Parameters:===== | =====Parameters:===== |
Revision as of 13:10, 29 January 2016
UM text [; title ]
- Display the argument text in a message box with caption title (default:
UM
) and only the buttonOK
. This function is a shortcut forMSGBOX MSG text [; title=UM]
.
EM [ rc=-1 [ level=2 ]] ; text [; title ]
Contents
Parameters:
- message
- The message to display.
Result:
0
Description:
A shorthand way to display a message to the user. See the macro BUTIL MSGBOX for more functionality.
Examples:
um Please press OK to continue