home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 January
/
Chip_2003-01_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d23456
/
COOLTRAY.ZIP
/
demos
/
TextTrayTest
/
TextTrayTest.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-06-26
|
261 b
|
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.