<?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 &amp;quot;italic style&amp;quot;]]></title><description><![CDATA[<p>hallo, zusammen,</p>
<p>wie kann der TExte stil im rich edit &quot;italic style&quot; sein?</p>
<pre><code>static CHARFORMAT2 cf2;
....
       case WM_SIZE :
         MoveWindow(hwndEdit, 0, 0, LOWORD(lParam), HIWORD(lParam), TRUE);

         cf2.cbSize = sizeof(CHARFORMAT2);
         cf2.dwMask = CFM_SIZE | CFE_BOLD |CFM_ITALIC|CFE_ITALIC;
         cf2.yHeight = 360;
         SendMessage(hwndEdit, EM_SETCHARFORMAT, SCF_ALL, (LPARAM)&amp;cf2);
         return 0;
</code></pre>
<p>warum geht es nicht? und noch komisch ist, mit CFE_BOLD die Texte sind NICHT Fettschrift ?!</p>
<p>danke vorher!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/224593/rich-edit-quot-italic-style-quot</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Apr 2026 17:09:06 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/224593.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 12 Oct 2008 10:20:23 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to rich edit &amp;quot;italic style&amp;quot; on Sun, 12 Oct 2008 10:24:08 GMT]]></title><description><![CDATA[<p>hallo, zusammen,</p>
<p>wie kann der TExte stil im rich edit &quot;italic style&quot; sein?</p>
<pre><code>static CHARFORMAT2 cf2;
....
       case WM_SIZE :
         MoveWindow(hwndEdit, 0, 0, LOWORD(lParam), HIWORD(lParam), TRUE);

         cf2.cbSize = sizeof(CHARFORMAT2);
         cf2.dwMask = CFM_SIZE | CFE_BOLD |CFM_ITALIC|CFE_ITALIC;
         cf2.yHeight = 360;
         SendMessage(hwndEdit, EM_SETCHARFORMAT, SCF_ALL, (LPARAM)&amp;cf2);
         return 0;
</code></pre>
<p>warum geht es nicht? und noch komisch ist, mit CFE_BOLD die Texte sind NICHT Fettschrift ?!</p>
<p>danke vorher!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1597732</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1597732</guid><dc:creator><![CDATA[damo]]></dc:creator><pubDate>Sun, 12 Oct 2008 10:24:08 GMT</pubDate></item><item><title><![CDATA[Reply to rich edit &amp;quot;italic style&amp;quot; on Sun, 12 Oct 2008 19:21:47 GMT]]></title><description><![CDATA[<p>Weil Du dwEffects nicht ausgefüllt hast und offensichtlich die Doku nicht gelesen hast.<br />
Die CFE_... Werte kommen nicht in das dwMask Feld!</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb787883(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb787883(VS.85).aspx</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1597914</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1597914</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Sun, 12 Oct 2008 19:21:47 GMT</pubDate></item><item><title><![CDATA[Reply to rich edit &amp;quot;italic style&amp;quot; on Sun, 12 Oct 2008 22:20:49 GMT]]></title><description><![CDATA[<p>Martin Richter:<br />
vielen vielen Dank!!!</p>
<p>Martin Richter schrieb:</p>
<blockquote>
<p>Weil Du ... und offensichtlich die Doku nicht gelesen hast.</p>
</blockquote>
<p>doch, aber war geträumt. ich dachte, dass die zwei Felder eine wäre.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1597947</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1597947</guid><dc:creator><![CDATA[damo]]></dc:creator><pubDate>Sun, 12 Oct 2008 22:20:49 GMT</pubDate></item><item><title><![CDATA[Reply to rich edit &amp;quot;italic style&amp;quot; on Sun, 12 Oct 2008 22:20:17 GMT]]></title><description><![CDATA[<p>ich hab's.</p>
<p>VS definiert so:</p>
<pre><code>#define CFM_EFFECTS (CFM_BOLD | CFM_ITALIC | CFM_UNDERLINE | CFM_COLOR | \
					 CFM_STRIKEOUT | CFE_PROTECTED | CFM_LINK)
#define CFM_ALL (CFM_EFFECTS | CFM_SIZE | CFM_FACE | CFM_OFFSET | CFM_CHARSET)
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1597978</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1597978</guid><dc:creator><![CDATA[damo]]></dc:creator><pubDate>Sun, 12 Oct 2008 22:20:17 GMT</pubDate></item></channel></rss>