<?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[OnKeyPress]]></title><description><![CDATA[<p>Hi, ich hab folgendes problem.</p>
<p>Wenn ich den event so verwende</p>
<pre><code class="language-cpp">//---------------------------------------------------------------------------

void __fastcall TForm1::Edit1KeyPress(TObject *Sender, char &amp;Key){
if (Key == 13) {
	Button1-&gt;SetFocus();
	Form1-&gt;Button1Click(this);
	}
}
//---------------------------------------------------------------------------
</code></pre>
<p>dann krieg ich wenn ich jetzt enter drücke immer son &quot;Bing&quot; rein, wie es eben kommt wenn ne form ürgent nen tastendruck kriegt und net weiß was se damit machen soll. aber im grunde funktionierts, also es wird gemacht was ich will. aber ich will dieses bing nicht ^^'' weiß jemand wie man das wegkriegt?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/209413/onkeypress</link><generator>RSS for Node</generator><lastBuildDate>Thu, 20 Aug 2026 13:57:18 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/209413.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 30 Mar 2008 14:46:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to OnKeyPress on Sun, 30 Mar 2008 14:46:19 GMT]]></title><description><![CDATA[<p>Hi, ich hab folgendes problem.</p>
<p>Wenn ich den event so verwende</p>
<pre><code class="language-cpp">//---------------------------------------------------------------------------

void __fastcall TForm1::Edit1KeyPress(TObject *Sender, char &amp;Key){
if (Key == 13) {
	Button1-&gt;SetFocus();
	Form1-&gt;Button1Click(this);
	}
}
//---------------------------------------------------------------------------
</code></pre>
<p>dann krieg ich wenn ich jetzt enter drücke immer son &quot;Bing&quot; rein, wie es eben kommt wenn ne form ürgent nen tastendruck kriegt und net weiß was se damit machen soll. aber im grunde funktionierts, also es wird gemacht was ich will. aber ich will dieses bing nicht ^^'' weiß jemand wie man das wegkriegt?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1483166</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1483166</guid><dc:creator><![CDATA[SomewhatStrange]]></dc:creator><pubDate>Sun, 30 Mar 2008 14:46:19 GMT</pubDate></item><item><title><![CDATA[Reply to OnKeyPress on Sun, 30 Mar 2008 14:58:18 GMT]]></title><description><![CDATA[<p>ja, schau mal in die <a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-39305-and-start-is-0-and-postdays-is-0-and-postorder-is-asc-and-highlight-is-.html" rel="nofollow">FAQ</a> Thema &quot;Standard-Beep/Pling-Sound unterdrücken&quot;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1483177</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1483177</guid><dc:creator><![CDATA[Linnea]]></dc:creator><pubDate>Sun, 30 Mar 2008 14:58:18 GMT</pubDate></item><item><title><![CDATA[Reply to OnKeyPress on Sun, 30 Mar 2008 14:58:43 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Du must nur den Key löschen</p>
<pre><code class="language-cpp">void __fastcall TForm1::Edit1KeyPress(TObject *Sender, char &amp;Key){
if (Key == 13) {
    Button1-&gt;SetFocus();
    Form1-&gt;Button1Click(this);
    Key = 0;
    }
}
</code></pre>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1483178</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1483178</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Sun, 30 Mar 2008 14:58:43 GMT</pubDate></item><item><title><![CDATA[Reply to OnKeyPress on Sun, 30 Mar 2008 15:21:59 GMT]]></title><description><![CDATA[<p>danköö <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1483204</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1483204</guid><dc:creator><![CDATA[Schurke]]></dc:creator><pubDate>Sun, 30 Mar 2008 15:21:59 GMT</pubDate></item></channel></rss>