| **Navigation:**  Window Designer >====== New Structure dialog ====== | [[menu editor.htm|{{btn_prev_n.gif|Previous page}}]][[coming future.htm|{{btn_home_n.gif|Return to chapter overview}}]][[edit picture string dialog.htm|{{btn_next_n.gif|Next page}}]] | | || This dialog lists the default Window and Report Structures contained in DEFAULTS.CLW. You may edit this file to modify these structures or add new window or report types. Here is a sample of structures that are in the shipping version of DEFAULTS.CLW: | **Window** | A standard window. | **window  WINDOW('Caption'),AT(,,260,100),GRAY** **        END** | **Window with OK & Cancel** | A standard window plus two button controls labeled: OK and Cancel. | **window  WINDOW('Caption'),AT(,,185,92),GRAY** ** BUTTON('OK'),AT(144,10,35,14),DEFAULT,USE(  )** ** BUTTON('Cancel'),AT(144,28,36,14),USE(?CancelButton)** **        END** | **System Modal Window** | A System Modal window. | **window  WINDOW('Caption'),AT(,,100,100),MODAL,DOUBLE,CENTER,GRAY** **        END** | **MDI Child Window** | An MDI Child Window. | **window  WINDOW('Caption'),AT(,,185,92),MDI,SYSTEM,RESIZE,GRAY** **        END** | **MDI Parent Frame** | An MDI Parent Window. | **AppFrame  APPLICATION('Caption'),AT(,,280,100),SYSTEM,RESIZE** **          END** | **Report (portrait)** | A blank Report in Portrait format. | **report  REPORT,AT(1000,2000,6000,7000),THOUS,PRE(RPT),FONT('Arial',10)** **       HEADER,AT(1000,1000,6000,1000)** **       END** **detail DETAIL** **       END** **       FOOTER,AT(1000,9000,6000,1000)** **       END** **       FORM,AT(1000,1000,6000,9000)** **       END** **        END** | **Report (landscape)** | A blank Report in Landscape format. | **report REPORT,AT(1000,1500,9000,5000),THOUS,PRE(RPT),LANDSCAPE,FONT('Arial',10)** **         HEADER,AT(1000,1000,9000,500)** **         END** **detail   DETAIL** **         END** **         FOOTER,AT(1000,6500,9000,500)** **         END** **         FORM,AT(1000,1000,9000,6000)** **         END** **       END**