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 >
Wrap
Text File
|
1998-06-23
|
605b
|
23 lines
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.