home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / Runimage / Delphi50 / Demos / Midas / Mstrdtl / clntproj.dpr < prev    next >
Encoding:
Text File  |  1999-08-11  |  360 b   |  17 lines

  1. program ClntProj;
  2.  
  3. uses
  4.   Forms,
  5.   ClntMain in 'ClntMain.pas' {ClientForm},
  6.   ClntDM in 'ClntDM.pas' {DM: TDataModule},
  7.   RecError in '..\..\..\OBJREPOS\recerror.pas' {ReconcileErrorForm};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TClientForm, ClientForm);
  14.   Application.CreateForm(TDM, DM);
  15.   Application.Run;
  16. end.
  17.