home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / ChipCD_1.03.iso / zkuste / delphi / kompon / d23456 / COOLTRAY.ZIP / demos / CustomHint2 / BigHintDemo.dpr < prev    next >
Text File  |  2002-04-11  |  195b  |  14 lines

  1. program BigHintDemo;
  2.  
  3. uses
  4.   Forms,
  5.   BigHint in 'BigHint.pas' {Form1};
  6.  
  7. {$R *.res}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.