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

  1. program Server;
  2.  
  3. uses
  4.   Forms,
  5.   ServMain in 'ServMain.pas' {MainForm},
  6.   ServData in 'ServData.pas' {EmpServer: TDataModule} {EmpServer: CoClass},
  7.   Serv_TLB in 'Serv_TLB.pas';
  8.  
  9. {$R *.RES}
  10.  
  11. {$R *.TLB}
  12.  
  13. begin
  14.  
  15. { Uncomment the following line to prevent the
  16.   application server main form from being displayed. }
  17.  
  18. { Application.ShowMainForm := False; }
  19.   Application.Initialize;
  20.   Application.CreateForm(TMainForm, MainForm);
  21.   Application.Run;
  22. end.
  23.