home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1996 August / VPR9608A.BIN / del20try / install / data.z / AUTOPROJ.DPR < prev    next >
Text File  |  1996-05-08  |  226b  |  16 lines

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