<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Rich edit Text farbe]]></title><description><![CDATA[<p>Hi ich will die textfarbe in einen RichEditControl ändern:</p>
<pre><code class="language-cpp">CHARFORMAT cf;
	m_RichEdit.GetDefaultCharFormat(cf);
	cf.crTextColor = 0x00FFFF;
	cf.dwMask = CFM_COLOR;
	m_RichEdit.SetDefaultCharFormat(cf);
</code></pre>
<p>Aber da passiert gar nix. Kann mir jemand helfen?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/67822/rich-edit-text-farbe</link><generator>RSS for Node</generator><lastBuildDate>Sat, 06 Jun 2026 13:35:31 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/67822.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 11 Mar 2004 21:12:25 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Rich edit Text farbe on Thu, 11 Mar 2004 21:12:25 GMT]]></title><description><![CDATA[<p>Hi ich will die textfarbe in einen RichEditControl ändern:</p>
<pre><code class="language-cpp">CHARFORMAT cf;
	m_RichEdit.GetDefaultCharFormat(cf);
	cf.crTextColor = 0x00FFFF;
	cf.dwMask = CFM_COLOR;
	m_RichEdit.SetDefaultCharFormat(cf);
</code></pre>
<p>Aber da passiert gar nix. Kann mir jemand helfen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/478658</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/478658</guid><dc:creator><![CDATA[sven1978]]></dc:creator><pubDate>Thu, 11 Mar 2004 21:12:25 GMT</pubDate></item><item><title><![CDATA[Reply to Rich edit Text farbe on Fri, 12 Mar 2004 15:36:33 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>versuche es so:</p>
<pre><code>CHARFORMAT cf;
    m_RichEdit.GetDefaultCharFormat(cf);
    cf.crTextColor = 0x00FFFF;
    cf.dwEffects &amp;= ~CFE_AUTOCOLOR;
    cf.dwMask = CFM_COLOR;
    m_RichEdit.SetDefaultCharFormat(cf);
</code></pre>
<p>MfG</p>
]]></description><link>https://www.c-plusplus.net/forum/post/479155</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/479155</guid><dc:creator><![CDATA[Probe-Nutzer]]></dc:creator><pubDate>Fri, 12 Mar 2004 15:36:33 GMT</pubDate></item><item><title><![CDATA[Reply to Rich edit Text farbe on Fri, 12 Mar 2004 17:00:03 GMT]]></title><description><![CDATA[<p>Super danke. Kannst mir auch noch sagen wie ich nur eine bestimmte linie farbig mache?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/479218</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/479218</guid><dc:creator><![CDATA[sven1978]]></dc:creator><pubDate>Fri, 12 Mar 2004 17:00:03 GMT</pubDate></item><item><title><![CDATA[Reply to Rich edit Text farbe on Fri, 12 Mar 2004 18:18:36 GMT]]></title><description><![CDATA[<p>was für eine &quot;Linie&quot; meinst du? Eine Zeile? Man formatiert in einem Rich-Edit-Control, indem man mit SetSel erst die Zeichen auswählt, und dann werden mit SetSelectionCharFormat nur diese Zeichen formatiert.</p>
<p>MfG</p>
]]></description><link>https://www.c-plusplus.net/forum/post/479273</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/479273</guid><dc:creator><![CDATA[Probe-Nutzer]]></dc:creator><pubDate>Fri, 12 Mar 2004 18:18:36 GMT</pubDate></item><item><title><![CDATA[Reply to Rich edit Text farbe on Sun, 14 Mar 2004 09:45:45 GMT]]></title><description><![CDATA[<p>Alles klar danke für die hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/post/479938</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/479938</guid><dc:creator><![CDATA[sven1978]]></dc:creator><pubDate>Sun, 14 Mar 2004 09:45:45 GMT</pubDate></item></channel></rss>