home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / delphi / ruzne / auto32d3.exe / rar / AUTO32D3 / DEMOS / DELPHI3.0 / FIND / FIND.DPR < prev    next >
Text File  |  1996-12-25  |  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.