home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 January
/
Chip_2003-01_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d23456
/
SMPLTIMR.ZIP
/
demos
/
TTimerTest
/
TTimerTest.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
2002-04-07
|
236 b
|
15 lines
program TTimerTest;
uses
Forms,
Main in 'Main.pas' {MainForm};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'TTimer Test';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.