Delphi 2007 - Undeclared identifier: clHightlightText - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T00:31:45Zhttp://stackoverflow.com/feeds/question/295496http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/295496/delphi-2007-undeclared-identifier-clhightlighttext0Delphi 2007 - Undeclared identifier: clHightlightTextRe0sless2008-11-17T12:43:53Z2009-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#2955083Answer by Gamecat for Delphi 2007 - Undeclared identifier: clHightlightTextGamecat2008-11-17T12:52:51Z2008-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#6501861Answer by vladimir for Delphi 2007 - Undeclared identifier: clHightlightTextvladimir2009-03-16T12:22:26Z2009-03-16T12:22:26Z<p>Borland's help article 'TColor type' is failed :(</p>
<p>Please manual write it or copy - clHighlightText :)</p>