home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 December
/
Chip_2002-12_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d234567
/
COOLTRAY.ZIP
/
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.