Statement: Action, Type: Initial
Display
Format: Display "text-string"
where
-
text-string = any text information that is enclosed in quotation marks " "
Description
The Display identifier opens a window and displays the text-string information.
Example
We are displaying a startup view that displays the name of our system and the author's name. The Display action statement will execute every time a new session is initiated. The following example will perform this task.
| RX Script | Copy Code |
|---|---|
When starting a new session
begin
Display "System All Good Fortune
Written by John Smith
Uses the Single Zero Wheel only"
end
|
|
