Multiple keyboards and low-level hooks - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:46:19Z http://stackoverflow.com/feeds/question/91234 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/91234/multiple-keyboards-and-low-level-hooks 2 Multiple keyboards and low-level hooks Ray Hayes 2008-09-18T09:37:51Z 2009-02-03T00:57:31Z <p>I have a system where I have multiple keyboards and really need to know which keyboard the key stroke is coming from. To explain the set up:</p> <ol> <li>I have a normal PC and USB keyboard</li> <li>I have an external VGA screen with some hard-keys</li> <li>The hard keys are mapped as a standard USB keyboard, sending a limited number of key-codes (F1, F2, Return, + and -)</li> </ol> <p>I have a low-level hook (in C# but actually calling upon Win32 functionality) which is able to deal with the input even when my application is not focused.</p> <p>The problem is that when using the normal keyboard, some of the mapped key-codes at picked up by the application being driven on the external screen. One of the key-presses sent by the external screen and used for confirmation is VK_RETURN. Unless I can identify the "device" and filter upon it, the user could be performing actions and confirming them on a screen their not even looking at.</p> <p>How do I know which keyboard was responsible for the key-press?</p> http://stackoverflow.com/questions/91234/multiple-keyboards-and-low-level-hooks/91241#91241 0 Answer by Amir Arad for Multiple keyboards and low-level hooks Amir Arad 2008-09-18T09:39:59Z 2008-09-18T09:39:59Z <p>not being a windows internals man, I'm only guessing that you should wrap the driver of the keyboard (/screen keys) you want to capture.</p> http://stackoverflow.com/questions/91234/multiple-keyboards-and-low-level-hooks/91345#91345 0 Answer by Roel for Multiple keyboards and low-level hooks Roel 2008-09-18T10:01:56Z 2008-09-18T10:01:56Z <p>No way to do this. Windows abstracts this for you. As mentioned, you need to write/modify a device driver.</p> http://stackoverflow.com/questions/91234/multiple-keyboards-and-low-level-hooks/91540#91540 1 Answer by A Nony Mouse for Multiple keyboards and low-level hooks A Nony Mouse 2008-09-18T10:44:06Z 2008-09-18T10:44:06Z <p>There is a way to do this, I had It working using <a href="http://www.quickmacros.com/" rel="nofollow">quick macros</a> and <a href="http://www.quickmacros.com/forum/viewtopic.php?t=776" rel="nofollow">keyboard detector</a>.</p> http://stackoverflow.com/questions/91234/multiple-keyboards-and-low-level-hooks/92946#92946 4 Answer by Roel for Multiple keyboards and low-level hooks Roel 2008-09-18T14:18:25Z 2008-09-18T14:18:25Z <p>Yes I stand corrected, my bad, learning something new every day.</p> <p>Here's my attempt at making up for it :) :</p> <ul> <li><p>Register the devices you want to use for raw input (the two keyboards) with ::RegisterRawInputDevices().</p></li> <li><p>You can get these devices from GetRawInputDeviceList()</p></li> <li><p>After you've registered your devices, you will start getting WM_INPUT messages.</p></li> <li><p>The lParam of the WM_INPUT message contains a RAWKEYBOARD structure that you can use to determine the keyboard where the input came from, plus the virtual keycode and the type of message (WM_KEYDOWN, WM_KEYUP, ...)</p></li> <li><p>So you can set a flag of where the last message came from and then dispatch it to the regular keyboard input handlers.</p></li> </ul> http://stackoverflow.com/questions/91234/multiple-keyboards-and-low-level-hooks/505664#505664 2 Answer by Evgeny for Multiple keyboards and low-level hooks Evgeny 2009-02-03T00:57:31Z 2009-02-03T00:57:31Z <p>I was looking for a solution to a similar problem today and found a complete and working solution here, including source code.</p> <p><a href="http://www.codeproject.com/KB/system/rawinput.aspx?fid=375378&amp;df=90&amp;mpp=25&amp;noise=3&amp;sort=Position&amp;view=Quick&amp;select=2811936" rel="nofollow">Using Raw Input from C# to handle multiple keyboards</a></p>