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

  1. program Server;
  2.  
  3. uses
  4.   Forms,
  5.   SrvrFrm in 'SrvrFrm.pas' {Form1},
  6.   Server_TLB in 'Server_TLB.pas',
  7.   SrvrDM in 'SrvrDM.pas' {LoginDemo: TRemoteDataModule} {LoginDemo: CoClass};
  8.  
  9. {$R *.TLB}
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.CreateForm(TForm1, Form1);
  16.   Application.Run;
  17. end.
  18.