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

  1.  
  2. {*******************************************************}
  3. {                                                       }
  4. {       Borland Delphi Visual Component Library         }
  5. {                                                       }
  6. {       Copyright (c) 1996,99 Inprise Corporation       }
  7. {                                                       }
  8. {*******************************************************}
  9.  
  10. unit ComStrs;
  11.  
  12. interface
  13.  
  14. resourcestring
  15.   sTabFailClear = 'Failed to clear tab control';
  16.   sTabFailDelete = 'Failed to delete tab at index %d';
  17.   sTabFailRetrieve = 'Failed to retrieve tab at index %d';
  18.   sTabFailGetObject = 'Failed to get object at index %d';
  19.   sTabFailSet = 'Failed to set tab "%s" at index %d';
  20.   sTabFailSetObject = 'Failed to set object at index %d';
  21.   sTabMustBeMultiLine = 'MultiLine must be True when TabPosition is tpLeft or tpRight';
  22.  
  23.   sInvalidLevel = 'Invalid item level assignment';
  24.   sInvalidLevelEx = 'Invalid level (%d) for item "%s"';
  25.   sInvalidIndex = 'Invalid index';
  26.   sInsertError = 'Unable to insert an item';
  27.  
  28.   sInvalidOwner = 'Invalid owner';
  29.   sUnableToCreateColumn = 'Unable to create new column';
  30.   sUnableToCreateItem = 'Unable to create new item';
  31.  
  32.   sRichEditInsertError = 'RichEdit line insertion error';
  33.   sRichEditLoadFail = 'Failed to Load Stream';
  34.   sRichEditSaveFail = 'Failed to Save Stream';
  35.  
  36.   sTooManyPanels = 'StatusBar cannot have more than 64 panels';
  37.  
  38.   sHKError = 'Error assigning Hot-Key to %s. %s';
  39.   sHKInvalid = 'Hot-Key is invalid';
  40.   sHKInvalidWindow = 'Window is invalid or a child window';
  41.   sHKAssigned = 'Hot-Key is assigned to another window';
  42.  
  43.   sUDAssociated = '%s is already associated with %s';
  44.  
  45.   sPageIndexError = '%d is an invalid PageIndex value.  PageIndex must be ' +
  46.     'between 0 and %d';
  47.  
  48.   sInvalidComCtl32 = 'This control requires version 4.70 or greater of COMCTL32.DLL';
  49.  
  50.   sDateTimeMax = 'Date exceeds maximum of %s';
  51.   sDateTimeMin = 'Date is less than minimum of %s';
  52.   sNeedAllowNone = 'You must be in ShowCheckbox mode to set to this date';
  53.   sFailSetCalDateTime = 'Failed to set calendar date or time';
  54.   sFailSetCalMaxSelRange = 'Failed to set maximum selection range';
  55.   sFailSetCalMinMaxRange = 'Failed to set calendar min/max range';
  56.   sCalRangeNeedsMultiSelect = 'Date range can only be used in multiselect mode';
  57.   sFailsetCalSelRange = 'Failed to set calendar selected range';
  58.  
  59. implementation
  60.  
  61. end.
  62.