home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Midas / InternetExpress / CustomerList / rdmcustomerdata.dpr < prev    next >
Text File  |  1999-08-11  |  405b  |  18 lines

  1. program rdmCustomerData;
  2.  
  3. uses
  4.   Forms,
  5.   rdmCustomerDataForm in 'rdmCustomerDataForm.pas' {Form1},
  6.   rdmCustomerData_TLB in 'rdmCustomerData_TLB.pas',
  7.   rdmCustomerDataModule in 'rdmCustomerDataModule.pas' {CustomerData: TRemoteDataModule} {CustomerData: CoClass};
  8.  
  9. {$R *.TLB}
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.CreateForm(TForm1, Form1);
  16.   Application.Run;
  17. end.
  18.