home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / OLECONST.PAS < prev    next >
Pascal/Delphi Source File  |  1997-01-16  |  546b  |  28 lines

  1. unit oleconst;
  2.  
  3. interface
  4.  
  5. {$R oleconst.RES}
  6.  
  7. const
  8.   SBadPropValue = 62208;
  9.   SCannotActivate = 62209;
  10.   SNoWindowHandle = 62210;
  11.   SOleError = 62211;
  12.   SVarNotObject = 62212;
  13.   SVarNotAutoObject = 62213;
  14.   SNoMethod = 62214;
  15.   SLinkProperties = 62215;
  16.   SInvalidLinkSource = 62216;
  17.   SCannotBreakLink = 62217;
  18.   SLinkedObject = 62218;
  19.   SEmptyContainer = 62219;
  20.   SInvalidVerb = 62220;
  21.   SPropDlgCaption = 62221;
  22.   SInvalidStreamFormat = 62222;
  23.   SInvalidLicense = 62223;
  24.   SNotLicensed = 62224;
  25.  
  26. implementation
  27.  
  28. end.