home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Quickrpt / Qr2 / qr2demo.dpr < prev    next >
Text File  |  1999-08-11  |  515b  |  21 lines

  1. program Qr2demo;
  2.  
  3. uses
  4.   Forms,
  5.   Menu in 'MENU.PAS' {MainForm},
  6.   Grplist in 'GRPLIST.PAS' {GrpListForm},
  7.   Md in 'MD.PAS' {MDForm},
  8.   List in 'LIST.PAS' {ListForm},
  9.   Manygrp in 'MANYGRP.PAS' {ManyGrpForm};
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.CreateForm(TMainForm, MainForm);
  15.   Application.CreateForm(TGrpListForm, GrpListForm);
  16.   Application.CreateForm(TMDForm, MDForm);
  17.   Application.CreateForm(TListForm, ListForm);
  18.   Application.CreateForm(TManyGrpForm, ManyGrpForm);
  19.   Application.Run;
  20. end.
  21.