<?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[bestimmte taste in einer Edit box abfangen]]></title><description><![CDATA[<p>Hallo leutez</p>
<p>wollte fragen, ob es eine message gibt, die gesendet wird, wenn man einen text in eine edit box eingibt!</p>
<p>mein problem:<br />
ich möchte beim drücken der taste enter einen button auslösen!<br />
(mit SendMessage() den button drücken)</p>
<p>ist es eigentlich möglich, zu überprüfen, ob zB alt + s in meinem fenster gedrückt wurde?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/73984/bestimmte-taste-in-einer-edit-box-abfangen</link><generator>RSS for Node</generator><lastBuildDate>Fri, 10 Apr 2026 13:50:48 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/73984.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 16 May 2004 09:14:12 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to bestimmte taste in einer Edit box abfangen on Sun, 16 May 2004 09:14:12 GMT]]></title><description><![CDATA[<p>Hallo leutez</p>
<p>wollte fragen, ob es eine message gibt, die gesendet wird, wenn man einen text in eine edit box eingibt!</p>
<p>mein problem:<br />
ich möchte beim drücken der taste enter einen button auslösen!<br />
(mit SendMessage() den button drücken)</p>
<p>ist es eigentlich möglich, zu überprüfen, ob zB alt + s in meinem fenster gedrückt wurde?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/521175</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/521175</guid><dc:creator><![CDATA[m0rph3uz]]></dc:creator><pubDate>Sun, 16 May 2004 09:14:12 GMT</pubDate></item><item><title><![CDATA[Reply to bestimmte taste in einer Edit box abfangen on Sun, 16 May 2004 10:17:52 GMT]]></title><description><![CDATA[<p>MSDN schrieb:</p>
<blockquote>
<p><strong>ES_WANTRETURN</strong><br />
Specifies that a carriage return be inserted when the user presses the ENTER key while entering text into a multiline edit control in a dialog box. If you do not specify this style, pressing the ENTER key has the same effect as pressing the dialog box's default push button. This style has no effect on a single-line edit control.</p>
</blockquote>
<p>Wenn du Enter drückst und der Style ES_WANTRETURN nicht gesetzt ist, wird also automatisch der DefaultPushButton gedrückt. Den DefaultPushButton hat den Style BS_DEFPUSHBUTTON.</p>
<p>m0rph3uz schrieb:</p>
<blockquote>
<p>ist es eigentlich möglich, zu überprüfen, ob zB alt + s in meinem fenster gedrückt wurde</p>
</blockquote>
<p>ich empfehle dir einen &quot;Keyboard Accelerator&quot; -&gt; auf deutsch Tastenkürzel (glaub ich wenigstens) näheres dazu findest du in der MSDN</p>
]]></description><link>https://www.c-plusplus.net/forum/post/521211</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/521211</guid><dc:creator><![CDATA[D*niel *chumann]]></dc:creator><pubDate>Sun, 16 May 2004 10:17:52 GMT</pubDate></item><item><title><![CDATA[Reply to bestimmte taste in einer Edit box abfangen on Sun, 16 May 2004 15:41:14 GMT]]></title><description><![CDATA[<p>naja ES_WANTRETURN bzw BS_DEFPUSHBUTTON sind Edit style bzw button stylte wenn ich das richtig verstehe!<br />
aber was für eine message bekomm ich dann, wenn ich bei meiner single line edit box BS_DEFPUSHBUTTON dazugebe und enter drücke?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/521412</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/521412</guid><dc:creator><![CDATA[m0rph3uz]]></dc:creator><pubDate>Sun, 16 May 2004 15:41:14 GMT</pubDate></item><item><title><![CDATA[Reply to bestimmte taste in einer Edit box abfangen on Sun, 16 May 2004 15:51:54 GMT]]></title><description><![CDATA[<p>ES_WANTRETURN ist doch kein Button-Style <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="😉"
    /><br />
Vielleicht hilft dir <a href="http://msdn.microsoft.com/library/en-us/shellcc/platform/commctls/editcontrols/editcontrolreference/editcontrolmessages/en_change.asp" rel="nofollow">EN_CHANGE</a> oder <a href="http://msdn.microsoft.com/library/en-us/shellcc/platform/commctls/editcontrols/editcontrolreference/editcontrolmessages/en_update.asp" rel="nofollow">EN_UPDATE</a> weiter. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/521418</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/521418</guid><dc:creator><![CDATA[flenders]]></dc:creator><pubDate>Sun, 16 May 2004 15:51:54 GMT</pubDate></item><item><title><![CDATA[Reply to bestimmte taste in einer Edit box abfangen on Sun, 16 May 2004 16:11:15 GMT]]></title><description><![CDATA[<p>Der Button mit dem Style BS_DEFPUSHBUTTON wird automatisch gedrückt, wenn du ENTER drückst, das wolltest du doch. ES_WANTRETURN darfst du nicht setzten.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/521436</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/521436</guid><dc:creator><![CDATA[D*niel *chumann]]></dc:creator><pubDate>Sun, 16 May 2004 16:11:15 GMT</pubDate></item></channel></rss>