home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / chap14 / easyfile / easyfile.dpr next >
Text File  |  1995-03-20  |  159b  |  13 lines

  1. program Easyfile;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TForm1, Form1);
  11.   Application.Run;
  12. end.
  13.