<?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[Welche Message wird geschickt bei CheckBox Änderung?]]></title><description><![CDATA[<p>Wie bereits geschrieben: welche Message wird geschickt bei CheckBox Änderung? Also ich hab da mal WM_COMMAND mit dem ID der Checkbox abgefangen, aber da kommt nichts. Auf was muss ich abfragen um eine Änderung zu erhalten?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/208856/welche-message-wird-geschickt-bei-checkbox-änderung</link><generator>RSS for Node</generator><lastBuildDate>Fri, 24 Apr 2026 15:28:14 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/208856.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 23 Mar 2008 17:35:04 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Welche Message wird geschickt bei CheckBox Änderung? on Sun, 23 Mar 2008 17:35:04 GMT]]></title><description><![CDATA[<p>Wie bereits geschrieben: welche Message wird geschickt bei CheckBox Änderung? Also ich hab da mal WM_COMMAND mit dem ID der Checkbox abgefangen, aber da kommt nichts. Auf was muss ich abfragen um eine Änderung zu erhalten?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1479247</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1479247</guid><dc:creator><![CDATA[* Holgi *]]></dc:creator><pubDate>Sun, 23 Mar 2008 17:35:04 GMT</pubDate></item><item><title><![CDATA[Reply to Welche Message wird geschickt bei CheckBox Änderung? on Sun, 23 Mar 2008 17:52:03 GMT]]></title><description><![CDATA[<p><a href="http://msdn2.microsoft.com/en-us/library/bb776940(VS.85).aspx" rel="nofollow">http://msdn2.microsoft.com/en-us/library/bb776940(VS.85).aspx</a></p>
<p>unter notifications findest du BN_CLICKED - wird immer gesendet.<br />
überprüfen kannst du ihn an mit BM_GETCHECK</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1479260</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1479260</guid><dc:creator><![CDATA[Xantus]]></dc:creator><pubDate>Sun, 23 Mar 2008 17:52:03 GMT</pubDate></item><item><title><![CDATA[Reply to Welche Message wird geschickt bei CheckBox Änderung? on Sun, 23 Mar 2008 18:34:59 GMT]]></title><description><![CDATA[<p>In der WM_COMMAND:</p>
<pre><code class="language-cpp">case WM_COMMAND: {

    // ID
    switch( LOWORD( wParam ) ) {

        case ID_DEINER_CHECKBOX: {

            // Action
            switch( HIWORD( wParam ) ) {

                 // z.B. Es wurde auf die Checkbox geklickt
                 case BN_CLICKED: {

                     // Hier kannste dann alles prüfen mit
                     // http://msdn2.microsoft.com/en-us/library/bb776940.aspx
                     // sofern es ein klick auf die CB war ;)
                     break;
                 } 
            }
            break;
        }
    }
    return 0;
}
</code></pre>
<p>Gruß Tobi.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1479276</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1479276</guid><dc:creator><![CDATA[T0bi]]></dc:creator><pubDate>Sun, 23 Mar 2008 18:34:59 GMT</pubDate></item><item><title><![CDATA[Reply to Welche Message wird geschickt bei CheckBox Änderung? on Mon, 24 Mar 2008 13:57:04 GMT]]></title><description><![CDATA[<p>Yo danke Leute das klappt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1479589</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1479589</guid><dc:creator><![CDATA[* Holgi *]]></dc:creator><pubDate>Mon, 24 Mar 2008 13:57:04 GMT</pubDate></item></channel></rss>