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

  1. program NavMdi;
  2.  
  3. uses
  4.   Forms,
  5.   CustOrds in 'CustOrds.pas' {fmCustOrd},
  6.   DM in 'DM.pas' {DM1},
  7.   Toolbar in 'Toolbar.pas' {fmToolbar},
  8.   CustData in 'CustData.pas' {fmCustomer},
  9.   About in 'About.pas' {fmAboutBox};
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.CreateForm(TfmToolbar, fmToolbar);
  15.   Application.CreateForm(TDM1, DM1);
  16.   Application.CreateForm(TfmCustomer, fmCustomer);
  17.   Application.CreateForm(TfmCustOrd, fmCustOrd);
  18.   Application.Run;
  19. end.
  20.