Message Line
The MessageLine property determines whether the message line is displayed at the bottom of the application window. This is used to display non-obtrusive messages to the user.
Example: " "
Value |
Description |
---|---|
Default |
Undefined. Use the default as defined in usys.ini |
|
Message line is displayed at the bottom of the application window. |
|
No message line is displayed |
Usage
Dynamic? |
Yes |
Dependencies: |
None |
Description
The message line is used to display runtime messages to the user. The message statement sends MessageText to the message line, so if you choose to hide the message line, you should ensure that it is made visible before sending a message to the message line, or provide an alternative way of communicating with the user (for example, using askmess).
Setting in usys.ini
[application] shell=ushell(MessageLine=false)
Setting in ProcScript
$applproperties()="MessageLine=false"