Delphi 2007 - Undeclared identifier: clHightlightText - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T00:31:45Z http://stackoverflow.com/feeds/question/295496 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/295496/delphi-2007-undeclared-identifier-clhightlighttext 0 Delphi 2007 - Undeclared identifier: clHightlightText Re0sless 2008-11-17T12:43:53Z 2009-03-16T12:22:26Z <p>I can not get clHightlight and clHightlightText colours to work in Delphi 2007, when I compile I get the errors: </p> <pre><code>[DCC Error] GlobalFunctions.pas(412): E2003 Undeclared identifier: 'clHightlightText' [DCC Error] GlobalFunctions.pas(413): E2003 Undeclared identifier: 'clHightlight' </code></pre> <p>But I have included the Graphic unit and in the same function I have clWindow,clWindowText,clInfoBk, clInfoText and they all work fine.</p> <p>clHightlightText appears in the CodeGear Documentation (under Graphics.TColor) along with clwindow and co.</p> <p>Any idea why this is?</p> <p>Info:</p> <blockquote> <p>Delphi 2007 (update 3 [I think])</p> <p>Windows XP (sp2)</p> </blockquote> http://stackoverflow.com/questions/295496/delphi-2007-undeclared-identifier-clhightlighttext/295508#295508 3 Answer by Gamecat for Delphi 2007 - Undeclared identifier: clHightlightText Gamecat 2008-11-17T12:52:51Z 2008-11-17T12:52:51Z <p>I think you have a typo in the constant name. You should use:</p> <pre><code>clHighLight and not clHigh t Light. </code></pre> <p>From graphics:</p> <pre><code>clHighlight = TColor(clSystemColor or COLOR_HIGHLIGHT); clHighlightText = TColor(clSystemColor or COLOR_HIGHLIGHTTEXT); </code></pre> http://stackoverflow.com/questions/295496/delphi-2007-undeclared-identifier-clhightlighttext/650186#650186 1 Answer by vladimir for Delphi 2007 - Undeclared identifier: clHightlightText vladimir 2009-03-16T12:22:26Z 2009-03-16T12:22:26Z <p>Borland's help article 'TColor type' is failed :(</p> <p>Please manual write it or copy - clHighlightText :)</p>