home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / delphi / delphi1 / lmdtoolb.exe / demos / hitimer / project1.dpr next >
Encoding:
Text File  |  1995-08-27  |  261 b   |  19 lines

  1. program Project1;
  2.  
  3. uses
  4.   Forms,
  5.   controls,
  6.   lmdhint,
  7.   dialogs,
  8.   Unit1 in 'UNIT1.PAS' {Form1};
  9.  
  10.   {$R *.RES}
  11.  
  12. begin
  13.  
  14.   Application.HelpFile := 'F:\DELPHI\VCL\BIZCALC.HLP';
  15.   Application.CreateForm(TForm1, Form1);
  16.   Application.Run;
  17.  
  18. end.
  19.