Resolved How To Set The Window To Open Maximized

Make sure the window is defined as "resizable", then before (or after) the window is being realized, set:

Code:
  ASSIGN {&WINDOW-NAME}:MAX-WIDTH = ?
         {&WINDOW-NAME}:MAX-HEIGHT = ?
         {&WINDOW-NAME}:WINDOW-STATE = WINDOW-MAXIMIZED.
 
Back
Top