home *** CD-ROM | disk | FTP | other *** search
- program Project1;
-
- uses
- Forms,
- Unit1 in 'Unit1.pas' {Form1},
- ObjLangF in 'ObjLangF.pas' {ObjLang},
- uRunTime in 'uRunTime.pas' {RunTime: TDataModule},
- LangFileUtils in 'LangFileUtils.pas' {FileUtils: TDataModule},
- LangQueryU in 'LangQueryU.pas' {LangQuery: TDataModule}
- ;
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.CreateForm(TForm1, Form1);
- Application.CreateForm(TObjLang, ObjLang);
- Application.CreateForm(TRunTime, RunTime);
- Application.CreateForm(TFileUtils, FileUtils);
- Application.CreateForm(TLangQuery, LangQuery);
- Application.Run;
- end.
-