home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Source / Internet / brkrconst.pas next >
Encoding:
Pascal/Delphi Source File  |  1999-08-11  |  1.2 KB  |  32 lines

  1. {*******************************************************}
  2. {                                                       }
  3. {       Borland Delphi Visual Component Library         }
  4. {                                                       }
  5. {       Copyright (c) 1995,99 Inprise Corporation       }
  6. {                                                       }
  7. {*******************************************************}
  8.  
  9. unit BrkrConst;
  10.  
  11. interface
  12.  
  13. resourcestring
  14.   sOnlyOneDataModuleAllowed = 'Only one data module per application';
  15.   sNoDataModulesRegistered = 'No data modules registered';
  16.   sNoDispatcherComponent = 'No dispatcher component found on data module';
  17.   sTooManyActiveConnections = 'Maximum number of concurrent connections exceeded.  ' +
  18.     'Please try again later';
  19.   sInternalServerError = '<html><title>Internal Server Error 500</title>'#13#10 +
  20.     '<h1>Internal Server Error 500</h1><hr>'#13#10 +
  21.     'Exception: %s<br>'#13#10 +
  22.     'Message: %s<br></html>'#13#10;
  23.   sDocumentMoved = '<html><title>Document Moved 302</title>'#13#10 +
  24.     '<body><h1>Object Moved</h1><hr>'#13#10 +
  25.     'This Object may be found <a HREF="%s">here.</a><br>'#13#10 +
  26.     '<br></body></html>'#13#10;
  27.  
  28.  
  29. implementation
  30.  
  31. end.
  32.