home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 December
/
Chip_2002-12_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d234567
/
COOLTRAY.ZIP
/
CoolTrayTest
/
CoolTrayTest.dpr
next >
Wrap
Text File
|
2002-04-07
|
261b
|
16 lines
program CoolTrayTest;
uses
Forms,
WinProcs,
CtMain in 'CtMain.pas' {MainForm};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'CoolTrayIcon Demo';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.