<?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[Beep verhindern (subclassing)]]></title><description><![CDATA[<p>Hi,</p>
<p>wie kann ich das nervige Beep abfangen das ertönt wenn ich eine Taste drücke? Ich benutze sublcassing für ein Control und in beiden habe ich</p>
<pre><code class="language-cpp">else if(message == WM_KEYUP)
		return 0;
	else if(message == WM_CHAR)
		return 0;
	else if(message == WM_KEYDOWN)
		return 0;
</code></pre>
<p>Trotzdem kommt weiter der Beep.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/176516/beep-verhindern-subclassing</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Jul 2026 21:59:32 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/176516.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 21 Mar 2007 21:44:38 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Beep verhindern (subclassing) on Wed, 21 Mar 2007 21:44:38 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>wie kann ich das nervige Beep abfangen das ertönt wenn ich eine Taste drücke? Ich benutze sublcassing für ein Control und in beiden habe ich</p>
<pre><code class="language-cpp">else if(message == WM_KEYUP)
		return 0;
	else if(message == WM_CHAR)
		return 0;
	else if(message == WM_KEYDOWN)
		return 0;
</code></pre>
<p>Trotzdem kommt weiter der Beep.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1250138</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1250138</guid><dc:creator><![CDATA[Toniii]]></dc:creator><pubDate>Wed, 21 Mar 2007 21:44:38 GMT</pubDate></item><item><title><![CDATA[Reply to Beep verhindern (subclassing) on Wed, 21 Mar 2007 21:48:21 GMT]]></title><description><![CDATA[<p>Aja das Fenster öffne ich mit DialogBox(...). Kanns daran liegen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1250140</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1250140</guid><dc:creator><![CDATA[Toniii]]></dc:creator><pubDate>Wed, 21 Mar 2007 21:48:21 GMT</pubDate></item><item><title><![CDATA[Reply to Beep verhindern (subclassing) on Thu, 22 Mar 2007 07:46:23 GMT]]></title><description><![CDATA[<p>Was für ein Control?</p>
<p>Wnen Du einen Dialog anlegst, dann interpretiert die Message Schleife die Tastatureingaben zuerst. VK_ENTER, VK_TAB und einige Cursor tasten werden hier automatisch interpretiert und zum Focuswechsel der Fenster verwendet.</p>
<p>Das kannst Du nicht durch Subclassing verhindern. Hat denn eines Deiner Fenster den Stil WS_TABSTOP und den Fokus?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1250218</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1250218</guid><dc:creator><![CDATA[Martin Richter]]></dc:creator><pubDate>Thu, 22 Mar 2007 07:46:23 GMT</pubDate></item></channel></rss>