User Tools

Site Tools


new_structure_dialog.htm
Navigation:  Window Designer >====== New Structure dialog ====== Previous pageReturn to chapter overviewNext 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

new_structure_dialog.htm.txt · Last modified: 2021/04/15 15:57 by 127.0.0.1