home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Demos / Midas / Pooler / CLIENT.DPR next >
Encoding:
Text File  |  1999-08-11  |  487 b   |  20 lines

  1. {*******************************************************}
  2. {                                                       }
  3. {        Midas RemoteDataModule Pooler Demo             }
  4. {                                                       }
  5. {*******************************************************}
  6.  
  7. program Client;
  8.  
  9. uses
  10.   Forms,
  11.   ClntFrm in 'ClntFrm.pas' {Form1};
  12.  
  13. {$R *.RES}
  14.  
  15. begin
  16.   Application.Initialize;
  17.   Application.CreateForm(TForm1, Form1);
  18.   Application.Run;
  19. end.
  20.