home *** CD-ROM | disk | FTP | other *** search
/ PC World Plus! (NZ) 2001 June / HDC50.iso / Runimage / Delphi50 / Source / Rtl / Sys / COMCONST.PAS next >
Pascal/Delphi Source File  |  1999-08-11  |  1KB  |  37 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Borland Delphi Runtime Library                  }
  5. {                                                       }
  6. {       Copyright (C) 1997,99 Inprise Corporation       }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit ComConst;
  11.  
  12. interface
  13.  
  14. resourcestring
  15.   SCreateRegKeyError = 'Error creating system registry entry';
  16.   SOleError = 'OLE error %.8x';
  17.   SObjectFactoryMissing = 'Object factory for class %s missing';
  18.   STypeInfoMissing = 'Type information missing for class %s';
  19.   SBadTypeInfo = 'Incorrect type information for class %s';
  20.   SDispIntfMissing = 'Dispatch interface missing from class %s';
  21.   SNoMethod = 'Method ''%s'' not supported by automation object';
  22.   SVarNotObject = 'Variant does not reference an automation object';
  23.   SDCOMNotInstalled = 'DCOM not installed';
  24.   SDAXError = 'DAX Error';
  25.  
  26.   SAutomationWarning = 'COM Server Warning';
  27.   SNoCloseActiveServer1 = 'There are still active COM objects in this ' +
  28.     'application.  One or more clients may have references to these objects, ' +
  29.     'so manually closing ';
  30.   SNoCloseActiveServer2 = 'this application may cause those client ' +
  31.     'application(s) to fail.'#13#10#13#10'Are you sure you want to close this ' +
  32.     'application?';
  33.  
  34. implementation
  35.  
  36. end.
  37.