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 >
Text File  |  2002-02-18  |  232b  |  16 lines

  1. program CustomHint;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'Main.pas' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.Title := 'Custom Tooltip';
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.  
  16.