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

  1. program Find;
  2.  
  3. uses
  4.   Forms,
  5.   Cust in 'Cust.pas' {fmCustomers},
  6.   DM in 'DM.pas' {DM2},
  7.   FindCust in 'FindCust.pas' {fmFindCust},
  8.   About in 'About.pas' {fmAboutBox};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TfmCustomers, fmCustomers);
  14.   Application.CreateForm(TDM2, DM2);
  15.   Application.CreateForm(TfmFindCust, fmFindCust);
  16.   Application.Run;
  17. end.
  18.