home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 January
/
ChipCD_1.03.iso
/
zkuste
/
delphi
/
kompon
/
d23456
/
COOLTRAY.ZIP
/
demos
/
CustomHint1
/
CustomHint.dpr
next >
Wrap
Text File
|
2002-02-18
|
232b
|
16 lines
program CustomHint;
uses
Forms,
Main in 'Main.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'Custom Tooltip';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.