home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Source / Vcl / oleconst.pas < prev    next >
Pascal/Delphi Source File  |  1999-08-11  |  2KB  |  38 lines

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Borland Delphi Visual Component Library         }
  5. {                                                       }
  6. {       Copyright (c) 1995,99 Inprise Corporation       }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit OleConst;
  11.  
  12. interface
  13.  
  14. resourcestring
  15.   SBadPropValue = '''%s'' is not a valid property value';
  16.   SCannotActivate = 'OLE control activation failed';
  17.   SNoWindowHandle = 'Could not obtain OLE control window handle';
  18.   SOleError = 'OLE error %.8x';
  19.   SVarNotObject = 'Variant does not reference an OLE object';
  20.   SVarNotAutoObject = 'Variant does not reference an automation object';
  21.   SNoMethod = 'Method ''%s'' not supported by OLE object';
  22.   SLinkProperties = 'Link Properties';
  23.   SInvalidLinkSource = 'Cannot link to an invalid source.';
  24.   SCannotBreakLink = 'Break link operation is not supported.';
  25.   SLinkedObject = 'Linked %s';
  26.   SEmptyContainer = 'Operation not allowed on an empty OLE container';
  27.   SInvalidVerb = 'Invalid object verb';
  28.   SPropDlgCaption = '%s Properties';
  29.   SInvalidStreamFormat = 'Invalid stream format';
  30.   SInvalidLicense = 'License information for %s is invalid';
  31.   SNotLicensed = 'License information for %s not found. You cannot use this control in design mode';
  32.   sNoRunningObject = 'Unable to retrieve a pointer to a running object registered with OLE for %s/%s';
  33.  
  34. implementation
  35.  
  36. end.
  37.  
  38.