<?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[NUM Lock&#x2F;Scrolllock ausschalten]]></title><description><![CDATA[<p>hi, ich habe eine kleine applikation geschrieben, die beim Start numlock und scrollock (falls aktiv) deaktivieren soll. kann mir bitte jemand einen tip geben, wie ich das am besten realisieren kann.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/76920/num-lock-scrolllock-ausschalten</link><generator>RSS for Node</generator><lastBuildDate>Fri, 24 Apr 2026 14:24:44 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/76920.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 16 Jun 2004 07:58:45 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to NUM Lock&#x2F;Scrolllock ausschalten on Wed, 16 Jun 2004 07:58:45 GMT]]></title><description><![CDATA[<p>hi, ich habe eine kleine applikation geschrieben, die beim Start numlock und scrollock (falls aktiv) deaktivieren soll. kann mir bitte jemand einen tip geben, wie ich das am besten realisieren kann.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/541306</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/541306</guid><dc:creator><![CDATA[joe87]]></dc:creator><pubDate>Wed, 16 Jun 2004 07:58:45 GMT</pubDate></item><item><title><![CDATA[Reply to NUM Lock&#x2F;Scrolllock ausschalten on Wed, 16 Jun 2004 08:21:10 GMT]]></title><description><![CDATA[<p>versuch mal dieses, sollte klappen.</p>
<pre><code class="language-cpp">void ActivateNumLock(BOOL bActivate)
{
    if((!bActivate &amp;&amp;  GetKeyState(VK_NUMLOCK)) ||
       ( bActivate &amp;&amp; !GetKeyState(VK_NUMLOCK)))
    {
	keybd_event(144, 0, 0, 0);          // Num Lock 
	keybd_event(144, 0, 0x02, 0);       // an / aus
    }
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/541318</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/541318</guid><dc:creator><![CDATA[Ernsti]]></dc:creator><pubDate>Wed, 16 Jun 2004 08:21:10 GMT</pubDate></item><item><title><![CDATA[Reply to NUM Lock&#x2F;Scrolllock ausschalten on Wed, 16 Jun 2004 11:25:34 GMT]]></title><description><![CDATA[<p>jo,des wars ! danke !</p>
]]></description><link>https://www.c-plusplus.net/forum/post/541469</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/541469</guid><dc:creator><![CDATA[joe87]]></dc:creator><pubDate>Wed, 16 Jun 2004 11:25:34 GMT</pubDate></item></channel></rss>