<?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[TShiftState ermitteln]]></title><description><![CDATA[<p>Ich brauch die Info ob die Strg-Taste gedrückt ist welche sich ja in der TShiftState-Set befindet. Leider ist dort wo ich die brauche ( in einem Drag&amp;Drop)Eereignis nicht vorhanden. Wie kann man da sonst rankommen?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/137499/tshiftstate-ermitteln</link><generator>RSS for Node</generator><lastBuildDate>Sun, 02 Aug 2026 17:50:30 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/137499.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 17 Feb 2006 21:21:47 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to TShiftState ermitteln on Fri, 17 Feb 2006 21:21:47 GMT]]></title><description><![CDATA[<p>Ich brauch die Info ob die Strg-Taste gedrückt ist welche sich ja in der TShiftState-Set befindet. Leider ist dort wo ich die brauche ( in einem Drag&amp;Drop)Eereignis nicht vorhanden. Wie kann man da sonst rankommen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/997013</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/997013</guid><dc:creator><![CDATA[marmey]]></dc:creator><pubDate>Fri, 17 Feb 2006 21:21:47 GMT</pubDate></item><item><title><![CDATA[Reply to TShiftState ermitteln on Fri, 17 Feb 2006 21:29:36 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>mittels WinAPI.<br />
Dafür habe ich mir diese Funktiopn geschrieben</p>
<pre><code class="language-cpp">TShiftState GetCurrentShiftState()
  {
    TShiftState ShiftState = TShiftState();

    if (GetKeyState(VK_SHIFT)&lt;0) ShiftState &lt;&lt; ssShift;
    if (GetKeyState(VK_MENU)&lt;0) ShiftState &lt;&lt; ssAlt;
    if (GetKeyState(VK_CONTROL)&lt;0) ShiftState &lt;&lt; ssCtrl;
    return(ShiftState);
    }
</code></pre>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/997016</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/997016</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Fri, 17 Feb 2006 21:29:36 GMT</pubDate></item><item><title><![CDATA[Reply to TShiftState ermitteln on Mon, 20 Feb 2006 07:13:24 GMT]]></title><description><![CDATA[<p>danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/998248</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/998248</guid><dc:creator><![CDATA[marmey]]></dc:creator><pubDate>Mon, 20 Feb 2006 07:13:24 GMT</pubDate></item></channel></rss>