home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Midas / InternetExpress / InetXCenter / inetxcentercgi.dpr < prev    next >
Text File  |  1999-08-11  |  348b  |  19 lines

  1. { CGI version of InternetExpress Center sample application }
  2.  
  3. program InetXCenterCGI;
  4.  
  5. {$APPTYPE CONSOLE}
  6.  
  7. uses
  8.   WebBroker,
  9.   CGIApp,
  10.   InextXCenterModule in 'InextXCenterModule.pas' {WebModule2: TWebModule};
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TWebModule2, WebModule2);
  17.   Application.Run;
  18. end.
  19.