home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 January
/
ChipCD_1.03.iso
/
zkuste
/
delphi
/
kompon
/
d23456
/
SMPLTIMR.ZIP
/
demos
/
TTimerTest
/
TTimerTest.dpr
< prev
next >
Wrap
Text File
|
2002-04-07
|
236b
|
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.