home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / QRDEMO.DPR < prev    next >
Text File  |  1996-05-08  |  808b  |  26 lines

  1. program qrdemo;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {TQuickReportDemo},
  6.   Mdrep in 'MDREP.PAS' {MDForm},
  7.   Simprep in 'SIMPREP.PAS' {SimpForm},
  8.   Biorep in 'BIOREP.PAS' {Bioform},
  9.   Demopre in 'DEMOPRE.PAS' {PrevForm},
  10.   Labelrep in 'Labelrep.pas' {LabelForm},
  11.   datasets in 'datasets.pas' {CustomerData},
  12.   textlist in 'textlist.pas' {TextRep};
  13.  
  14. {$R *.RES}
  15. begin
  16.   Application.CreateForm(TTQuickReportDemo, TQuickReportDemo);
  17.   Application.CreateForm(TSimpForm, SimpForm);
  18.   Application.CreateForm(TMDForm, MDForm);
  19.   Application.CreateForm(TBioform, Bioform);
  20.   Application.CreateForm(TLabelForm, LabelForm);
  21.   Application.CreateForm(TPrevForm, PrevForm);
  22.   Application.CreateForm(TCustomerData, CustomerData);
  23.   Application.CreateForm(TTextRep, TextRep);
  24.   Application.Run;
  25. end. 
  26.