home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 April
/
Chip_2002-04_cd1.bin
/
zkuste
/
delphi
/
kolekce
/
d56
/
NT.ZIP
/
Demos
/
MainDemo
/
NTToolsDemo.dpr
< prev
next >
Wrap
Text File
|
2002-01-18
|
231b
|
15 lines
program NTToolsDemo;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'NTTools Demo';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.