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

  1. program Server;
  2.  
  3. uses
  4.   Forms,
  5.   SrvrForm in 'SrvrForm.pas' {ServerForm},
  6.   Serv_TLB in 'Serv_TLB.pas',
  7.   SrvrDM in 'SrvrDM.pas' {ProjectData: TDataModule} {ProjectData: CoClass};
  8.  
  9. {$R *.RES}
  10.  
  11. {$R *.TLB}
  12.  
  13. begin
  14.   { Uncomment this line to hide the server form. } 
  15. //  Application.ShowMainForm := False;
  16.   Application.Initialize;
  17.   Application.CreateForm(TServerForm, ServerForm);
  18.   Application.Run;
  19. end.
  20.