<?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[wie nachrichten für editbox empfangen ?]]></title><description><![CDATA[<p>hallo, ich habe eine editbox erstellt:</p>
<pre><code class="language-cpp">hWndEdit = CreateWindowEx(WS_EX_ACCEPTFILES,
			&quot;EDIT&quot;,
			NULL,
			WS_CHILD | WS_VISIBLE |	WS_BORDER,
			20,30,200,20,
			hWndMain,		 
			NULL,
			hInst,
			NULL);
</code></pre>
<p>das funzt soweit. bloss, wie komme ich an die nachrichten ran ?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/210747/wie-nachrichten-für-editbox-empfangen</link><generator>RSS for Node</generator><lastBuildDate>Tue, 21 Apr 2026 20:22:57 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/210747.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 14 Apr 2008 17:49:56 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to wie nachrichten für editbox empfangen ? on Mon, 14 Apr 2008 17:49:56 GMT]]></title><description><![CDATA[<p>hallo, ich habe eine editbox erstellt:</p>
<pre><code class="language-cpp">hWndEdit = CreateWindowEx(WS_EX_ACCEPTFILES,
			&quot;EDIT&quot;,
			NULL,
			WS_CHILD | WS_VISIBLE |	WS_BORDER,
			20,30,200,20,
			hWndMain,		 
			NULL,
			hInst,
			NULL);
</code></pre>
<p>das funzt soweit. bloss, wie komme ich an die nachrichten ran ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1491981</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1491981</guid><dc:creator><![CDATA[winapi NooB]]></dc:creator><pubDate>Mon, 14 Apr 2008 17:49:56 GMT</pubDate></item><item><title><![CDATA[Reply to wie nachrichten für editbox empfangen ? on Mon, 14 Apr 2008 17:55:28 GMT]]></title><description><![CDATA[<p>Stichwort 'subclassing' ... Forumsuche, Google, etc. pp. hilft Dir da weiter <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> .</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1491984</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1491984</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Mon, 14 Apr 2008 17:55:28 GMT</pubDate></item><item><title><![CDATA[Reply to wie nachrichten für editbox empfangen ? on Mon, 14 Apr 2008 17:55:57 GMT]]></title><description><![CDATA[<p>die nachrichten kriegt das parent</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1491986</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1491986</guid><dc:creator><![CDATA[steve balmer]]></dc:creator><pubDate>Mon, 14 Apr 2008 17:55:57 GMT</pubDate></item><item><title><![CDATA[Reply to wie nachrichten für editbox empfangen ? on Mon, 14 Apr 2008 19:04:05 GMT]]></title><description><![CDATA[<p>Hängt halt von den Nachrichten ab, die Du/er empfangen willst...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1492042</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1492042</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Mon, 14 Apr 2008 19:04:05 GMT</pubDate></item><item><title><![CDATA[Reply to wie nachrichten für editbox empfangen ? on Mon, 14 Apr 2008 19:37:31 GMT]]></title><description><![CDATA[<p>also, es sollen dateien ins textfeld gezogen werden können und der dateiname soll dann weiter verarbeitet werden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1492063</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1492063</guid><dc:creator><![CDATA[winapi nOOb]]></dc:creator><pubDate>Mon, 14 Apr 2008 19:37:31 GMT</pubDate></item><item><title><![CDATA[Reply to wie nachrichten für editbox empfangen ? on Mon, 14 Apr 2008 20:15:35 GMT]]></title><description><![CDATA[<p>ich guck mir grad WM_DROPFILES an. ist es echt so, daß man da subclassen muss. die nachricht wird ned ans parent geschickt? komisch ich hab das schon gemacht und kann mich ned dran erinnern da subclassing gemacht zu haben <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1492095</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1492095</guid><dc:creator><![CDATA[rofler]]></dc:creator><pubDate>Mon, 14 Apr 2008 20:15:35 GMT</pubDate></item><item><title><![CDATA[Reply to wie nachrichten für editbox empfangen ? on Mon, 14 Apr 2008 20:58:48 GMT]]></title><description><![CDATA[<p>ich habe gerade in der msdn über dieses thema gelesen. ganz so einfach scheint das nicht zu sein. man muss erst RegisterDragDrop aufrufen, wenn ich mich nicht irre. naja, gucke ich mir morgen an, bin jetzt schon zu müde.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1492126</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1492126</guid><dc:creator><![CDATA[winapi nOOb]]></dc:creator><pubDate>Mon, 14 Apr 2008 20:58:48 GMT</pubDate></item><item><title><![CDATA[Reply to wie nachrichten für editbox empfangen ? on Tue, 15 Apr 2008 12:36:59 GMT]]></title><description><![CDATA[<p>winapi nOOb schrieb:</p>
<blockquote>
<p>... ganz so einfach scheint das nicht zu sein. ...</p>
</blockquote>
<p>ack <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44d.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_up"
      title=":+1:"
      alt="👍"
    /><br />
sach bescheid wennze feddich biste</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1492366</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1492366</guid><dc:creator><![CDATA[ack]]></dc:creator><pubDate>Tue, 15 Apr 2008 12:36:59 GMT</pubDate></item></channel></rss>