home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 January
/
ChipCD_1.03.iso
/
zkuste
/
delphi
/
kompon
/
d23456
/
COOLTRAY.ZIP
/
demos
/
TextTrayTest
/
TextTrayTest.dpr
< prev
next >
Wrap
Text File
|
2001-06-26
|
261b
|
16 lines
program TextTrayTest;
uses
Forms,
WinProcs,
TtMain in 'TtMain.pas' {MainForm};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'TextTrayIcon Demo';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.