<?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[Strg+S]]></title><description><![CDATA[<p>Hi,<br />
wie kann ich in OnKeyDown abfragen, ob Strg+S (+N,+ESC) gedrückt wurde?<br />
Danke!!!<br />
Gruss, Tobias</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/6119/strg-s</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Apr 2026 13:44:32 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/6119.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 31 May 2003 22:15:00 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Strg+S on Sat, 31 May 2003 22:15:00 GMT]]></title><description><![CDATA[<p>Hi,<br />
wie kann ich in OnKeyDown abfragen, ob Strg+S (+N,+ESC) gedrückt wurde?<br />
Danke!!!<br />
Gruss, Tobias</p>
]]></description><link>https://www.c-plusplus.net/forum/post/29661</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/29661</guid><dc:creator><![CDATA[tobis79211]]></dc:creator><pubDate>Sat, 31 May 2003 22:15:00 GMT</pubDate></item><item><title><![CDATA[Reply to Strg+S on Sat, 31 May 2003 23:59:00 GMT]]></title><description><![CDATA[<p>Hi</p>
<pre><code>void xxx::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) 
{
  if(GetKeyState(VK_CONTROL) &lt; 0)
  {
    switch(nChar)
    {
      case 'S':
      {
        ....
      } break;
      case 'N':
      {
        ....
      } break;
      case VK_ESCAPE:
      {
        ....
      } break;
    }
  }
}
</code></pre>
<p>storyteller</p>
]]></description><link>https://www.c-plusplus.net/forum/post/29662</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/29662</guid><dc:creator><![CDATA[storyteller]]></dc:creator><pubDate>Sat, 31 May 2003 23:59:00 GMT</pubDate></item><item><title><![CDATA[Reply to Strg+S on Wed, 11 Jun 2003 09:53:00 GMT]]></title><description><![CDATA[<p>Hi, ich hab nur ein Problem:<br />
Meine Ansichtsklasse besteht aus einem CFormView links und einem CView rechts.<br />
Wenn ich die Menü-Leiste &quot;anklicke&quot; und dann Strg+S drücke funktioniert alles bestens, allerdings, wenn ich z.B. im CView oder CFormView &quot;bin&quot; (also dort hinklicke!) dann passiert nichts!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/29663</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/29663</guid><dc:creator><![CDATA[tobis79211]]></dc:creator><pubDate>Wed, 11 Jun 2003 09:53:00 GMT</pubDate></item></channel></rss>