How to resize the dilog box

A dialog is a FRAME with a view-as phrase, so the simplest way is to fiddle with the FRAME's attributes:

Code:
ASSIGN
    FRAME {&FRAME-NAME}:HEIGHT-PIXELS = 200
    FRAME {&FRAME-NAME}:WIDTH-PIXELS  = 200.

Be aware that you should move field-level widgets around (fill-ins, combos, etc) before a resize to avoid the appearance of scroll-bars. Also, depending on how your dialog is configured, you may need to fiddle with VIRTUAL-WIDTH-PIXELS and VIRTUAL-HEIGHT-PIXELS.
 
Top