home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / Runimage / Delphi50 / Demos / Midas / Pooler / server.dpr < prev    next >
Encoding:
Text File  |  1999-08-11  |  634 b   |  24 lines

  1. {*******************************************************}
  2. {                                                       }
  3. {        Midas RemoteDataModule Pooler Demo             }
  4. {                                                       }
  5. {*******************************************************}
  6. program Server;
  7.  
  8. uses
  9.   Forms,
  10.   SrvrFrm in 'SrvrFrm.pas' {Form1},
  11.   Server_TLB in 'Server_TLB.pas',
  12.   SrvrDM in 'SrvrDM.pas' {PooledRDM: TDataModule} {PooledRDM: CoClass},
  13.   Pooler in 'Pooler.pas';
  14.  
  15. {$R *.TLB}
  16.  
  17. {$R *.RES}
  18.  
  19. begin
  20.   Application.Initialize;
  21.   Application.CreateForm(TForm1, Form1);
  22.   Application.Run;
  23. end.
  24.