home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1998 October / dpcb1098.iso / Business / Maxim / MAX5 / data.z / DELPHIRS.DPR < prev    next >
Text File  |  1998-05-13  |  168b  |  13 lines

  1. program DelphiRS;
  2.  
  3. uses
  4.   Forms,
  5.   main in 'main.pas' {MainForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TMainForm, MainForm);
  11.   Application.Run;
  12. end.
  13.