home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1996 August
/
VPR9608A.BIN
/
del20try
/
install
/
data.z
/
QRDEMO.DPR
< prev
next >
Wrap
Text File
|
1996-05-08
|
808b
|
26 lines
program qrdemo;
uses
Forms,
Main in 'MAIN.PAS' {TQuickReportDemo},
Mdrep in 'MDREP.PAS' {MDForm},
Simprep in 'SIMPREP.PAS' {SimpForm},
Biorep in 'BIOREP.PAS' {Bioform},
Demopre in 'DEMOPRE.PAS' {PrevForm},
Labelrep in 'Labelrep.pas' {LabelForm},
datasets in 'datasets.pas' {CustomerData},
textlist in 'textlist.pas' {TextRep};
{$R *.RES}
begin
Application.CreateForm(TTQuickReportDemo, TQuickReportDemo);
Application.CreateForm(TSimpForm, SimpForm);
Application.CreateForm(TMDForm, MDForm);
Application.CreateForm(TBioform, Bioform);
Application.CreateForm(TLabelForm, LabelForm);
Application.CreateForm(TPrevForm, PrevForm);
Application.CreateForm(TCustomerData, CustomerData);
Application.CreateForm(TTextRep, TextRep);
Application.Run;
end.