home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / zkuste / delphi / kompon / d23456 / TB97.ZIP / Source / TB97Cnst.pas < prev    next >
Pascal/Delphi Source File  |  2001-01-05  |  1KB  |  37 lines

  1. unit TB97Cnst;
  2.  
  3. {
  4.   Toolbar97
  5.   Copyright (C) 1998-2001 by Jordan Russell
  6.   For conditions of distribution and use, see LICENSE.TXT.
  7.  
  8.   String constants
  9.  
  10.   $Id: TB97Cnst.pas,v 1.2 2001/01/04 04:17:14 jr Exp $
  11. }
  12.  
  13. interface
  14.  
  15. {$I TB97Ver.inc}
  16.  
  17. {$IFDEF TB97D3} resourcestring {$ELSE} const {$ENDIF}
  18.   { TDock97 exception messages }
  19.   STB97DockParentNotAllowed = 'A TDock97 control cannot be placed inside a tool window or another TDock97';
  20.   STB97DockCannotChangePosition = 'Cannot change Position of a TDock97 if it already contains controls';
  21.  
  22.   { TCustomToolWindow97 exception messages }
  23.   STB97ToolwinNameNotSet = 'Cannot save tool window''s position because Name property is not set';
  24.   STB97ToolwinDockedToNameNotSet = 'Cannot save tool window''s position because DockedTo''s Name property not set';
  25.   STB97ToolwinParentNotAllowed = 'A tool window can only be placed on a TDock97 or directly on the form';
  26.  
  27.   { TCustomToolbar97 exception messages }
  28.   STB97ToolbarControlNotChildOfToolbar = 'Control ''%s'' is not a child of the toolbar';
  29.  
  30.   { TToolbarSep97 exception messages }
  31.   STB97SepParentNotAllowed = 'TToolbarSep97 can only be placed on a TToolbar97';
  32.  
  33. implementation
  34.  
  35. end.
  36.  
  37.