home *** CD-ROM | disk | FTP | other *** search
- program Find;
-
- uses
- Forms,
- Cust in 'Cust.pas' {fmCustomers},
- DM in 'DM.pas' {DM2},
- FindCust in 'FindCust.pas' {fmFindCust},
- About in 'About.pas' {fmAboutBox};
-
- {$R *.RES}
-
- begin
- Application.CreateForm(TfmCustomers, fmCustomers);
- Application.CreateForm(TDM2, DM2);
- Application.CreateForm(TfmFindCust, fmFindCust);
- Application.Run;
- end.
-