forlang.hlp (Table of Contents; Topic list)
Specifying the Window Title
                                             Up Contents Index Back
─────Specifying the Window Title────────────────────────────────────────────
 
     The OPEN statement can have an optional TITLE parameter, which
     specifies the text that appears in a child window's title bar:
 
          OPEN(UNIT = 10, FILE = 'USER', TITLE = 'Window Title')
 
     The TITLE parameter must be a character expression. If you do not
     specify a title, the default is "Unit" - followed by the unit
     number or an asterisk (*).
 
     If the window is in a certain mode, the title shows that mode. If
     the window is in select mode "Select -" precedes the title. If
     the window is in mark mode, "Mark -" precedes the title. And, if
     the window is in closed mode "- Closed" follows the title.
 
     Reopening the unit with a new title has no effect: the title can
     be set only once, the first time the unit is opened.
 
     NOTE: A run-time error results if the TITLE parameter is
     used with a unit other than a QuickWin child window.
                                    -♦-