home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / delphi / kompon / d456 / EKRTF.ZIP / MainDemo / Project1.dpr < prev    next >
Text File  |  2000-10-23  |  605b  |  24 lines

  1. program Project1;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'Unit1.pas' {MainForm},
  6.   Unit2 in 'Unit2.pas' {DM: TDataModule},
  7.   DlgInfU in 'DlgInfU.pas' {DlgInv},
  8.   UCustSel in 'UCustSel.pas' {CustSel},
  9.   UGauge in 'UGauge.pas' {FGauge},
  10.   UREdit in 'UREdit.pas' {FREdit};
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TMainForm, MainForm);
  17.   Application.CreateForm(TDM, DM);
  18.   Application.CreateForm(TDlgInv, DlgInv);
  19.   Application.CreateForm(TCustSel, CustSel);
  20.   Application.CreateForm(TFGauge, FGauge);
  21.   Application.CreateForm(TFREdit, FREdit);
  22.   Application.Run;
  23. end.
  24.