home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Midas / Setparam / server.dpr < prev    next >
Text File  |  1999-08-11  |  326b  |  18 lines

  1. program Server;
  2.  
  3. uses
  4.   Forms,
  5.   ServMain in 'ServMain.pas' {Form1},
  6.   Serv_TLB in 'Serv_TLB.pas',
  7.   ServData in 'ServData.pas' {SetParamDemo: TDataModule} {SetParamDemo: CoClass};
  8.  
  9. {$R *.RES}
  10.  
  11. {$R *.TLB}
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.CreateForm(TMainForm, MainForm);
  16.   Application.Run;
  17. end.
  18.