home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Corba / Datamodule / corbaclient.dpr next >
Text File  |  1999-08-11  |  443b  |  21 lines

  1. program CORBAClient;
  2.  
  3. {
  4.   This is the CORBA Client part of the demo.
  5.   This is just created by a File | New Application.
  6.   Before you run the client, compile and run
  7.   the Server. Please read the comments on the Server.
  8. }
  9.  
  10. uses
  11.   Forms,
  12.   CORBAClientForm in 'CORBAClientForm.pas' {DemoClientFrm};
  13.  
  14. {$R *.RES}
  15.  
  16. begin
  17.   Application.Initialize;
  18.   Application.CreateForm(TDemoClientFrm, DemoClientFrm);
  19.   Application.Run;
  20. end.
  21.