home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Midas / InternetExpress / CustomerList / customerlist.dpr next >
Text File  |  1999-08-11  |  288b  |  17 lines

  1. program CustomerList;
  2.  
  3. {$APPTYPE CONSOLE}
  4.  
  5. uses
  6.   WebBroker,
  7.   CGIApp,
  8.   CustomerListWebModule in 'CustomerListWebModule.pas' {WebModule1: TWebModule};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TWebModule1, WebModule1);
  15.   Application.Run;
  16. end.
  17.