home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 February / Chip_2000-02_cd.bin / zkuste / Delphi / navody / tt / objvm.exe / SAMPLE / Project1.dpr < prev    next >
Text File  |  1998-06-23  |  605b  |  23 lines

  1. program Project1;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'Unit1.pas' {Form1},
  6.   ObjLangF in 'ObjLangF.pas' {ObjLang},
  7.   uRunTime in 'uRunTime.pas' {RunTime: TDataModule},
  8.   LangFileUtils in 'LangFileUtils.pas' {FileUtils: TDataModule},
  9.   LangQueryU in 'LangQueryU.pas' {LangQuery: TDataModule}
  10.   ;
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TForm1, Form1);
  17.   Application.CreateForm(TObjLang, ObjLang);
  18.   Application.CreateForm(TRunTime, RunTime);
  19.   Application.CreateForm(TFileUtils, FileUtils);
  20.   Application.CreateForm(TLangQuery, LangQuery);
  21.   Application.Run;
  22. end.
  23.