<?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[änderung in editbox registrieren]]></title><description><![CDATA[<p>heiho</p>
<p>jemand n tipp fuer mich ?<br />
und zwar moechte ich bei jedem tastendruck in einer editbox eine funktion starten</p>
<p>wenn ich</p>
<p>WM_KEYUP aufruf, merkt er das nur wenn ich irgendwohin klick, aber in der box selber springt er dort nicht hinein<br />
und als unteroption zu WM_COMMAND aendert auch nix</p>
<p>wie kann ich eingaben &quot;abfangen&quot; ?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/167462/änderung-in-editbox-registrieren</link><generator>RSS for Node</generator><lastBuildDate>Thu, 16 Jul 2026 15:53:06 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/167462.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 11 Dec 2006 13:06:23 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to änderung in editbox registrieren on Mon, 11 Dec 2006 13:06:23 GMT]]></title><description><![CDATA[<p>heiho</p>
<p>jemand n tipp fuer mich ?<br />
und zwar moechte ich bei jedem tastendruck in einer editbox eine funktion starten</p>
<p>wenn ich</p>
<p>WM_KEYUP aufruf, merkt er das nur wenn ich irgendwohin klick, aber in der box selber springt er dort nicht hinein<br />
und als unteroption zu WM_COMMAND aendert auch nix</p>
<p>wie kann ich eingaben &quot;abfangen&quot; ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1190086</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1190086</guid><dc:creator><![CDATA[EXDW]]></dc:creator><pubDate>Mon, 11 Dec 2006 13:06:23 GMT</pubDate></item><item><title><![CDATA[Reply to änderung in editbox registrieren on Mon, 11 Dec 2006 13:38:43 GMT]]></title><description><![CDATA[<p>Also WM_COMMAND funktioniert bei mir bestens:</p>
<pre><code class="language-cpp">case WM_COMMAND:
   switch(LOWORD(wParam))
   {
      case EBX_DEIN_EDIT:
         break;
   }
   break;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1190107</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1190107</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Mon, 11 Dec 2006 13:38:43 GMT</pubDate></item><item><title><![CDATA[Reply to änderung in editbox registrieren on Mon, 11 Dec 2006 14:00:49 GMT]]></title><description><![CDATA[<p>as HIWORD von wParam sollte man zusätzlich auf EN_CHANGE prüfen. Sonst wird der Code auch für einen Focuswechsel aufgerufen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1190127</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1190127</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Mon, 11 Dec 2006 14:00:49 GMT</pubDate></item></channel></rss>