<?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[Einen Text an das RichEditControl anängen - wie?]]></title><description><![CDATA[<p>Hallo,<br />
ein Message(hwnd,EM_STREAMIN,SF_TEXT,(LPARAM)&amp;editstream);<br />
überschreibt den vorherigen Text. Wie kann ich es anstellen, das ich den Text an den vorhandenen anhänge?<br />
Gruß,<br />
r.n.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/235815/einen-text-an-das-richeditcontrol-anängen-wie</link><generator>RSS for Node</generator><lastBuildDate>Wed, 08 Apr 2026 05:42:39 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/235815.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 06 Mar 2009 17:52:47 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Einen Text an das RichEditControl anängen - wie? on Fri, 06 Mar 2009 17:52:47 GMT]]></title><description><![CDATA[<p>Hallo,<br />
ein Message(hwnd,EM_STREAMIN,SF_TEXT,(LPARAM)&amp;editstream);<br />
überschreibt den vorherigen Text. Wie kann ich es anstellen, das ich den Text an den vorhandenen anhänge?<br />
Gruß,<br />
r.n.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1675439</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1675439</guid><dc:creator><![CDATA[richedit n00b]]></dc:creator><pubDate>Fri, 06 Mar 2009 17:52:47 GMT</pubDate></item><item><title><![CDATA[Reply to Einen Text an das RichEditControl anängen - wie? on Fri, 06 Mar 2009 19:50:24 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">char* s=&quot;Hello RichEditControl from edit n00b!&quot;;
CHARRANGE chr;
int len = GetWindowTextLength(hTop);
	chr.cpMax=chr.cpMin=len;
	editstreamTop.dwCookie = (uint)s;
	SendMessage(hTop, EM_EXSETSEL, NULL, (LPARAM)&amp;chr);
	SendMessage(hTop, EM_REPLACESEL,(WPARAM)false, (LPARAM)s);
</code></pre>
<p>mfg,<br />
r.n.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1675497</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1675497</guid><dc:creator><![CDATA[richedit n00b]]></dc:creator><pubDate>Fri, 06 Mar 2009 19:50:24 GMT</pubDate></item></channel></rss>