home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 February / DPPCPRO0299.ISO / February / Delphi / Install / DATA.Z / FIND.DPR < prev    next >
Encoding:
Text File  |  1996-06-11  |  370 b   |  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.