Emulating Multiple Keyboards - Is it Possible?

juicycrapachino

Distinguished
May 8, 2010
232
0
18,690
Is it possible to emulate key commands for more than one keyboard on one computer while having them function at the same time? For example; 'If I we're to be gaming and want the "A" key on one keyboard to have me throw a lethal grenade, but on the other keyboard have the "A" key throw a tactical grenade'. Is this possible? If so, is there software out there that can help me accomplish this task, or is it hardware related? Thanks in advance and hopefully the users here can help me!

Sincerely,

JuicyCrapachino
 
Solution
You cannot without writing your own custom keyboard driver. Windows combines the input from all keyboards and mice into one message queue. However, if you write your own custom USB keyboard driver, and you modify the game code, you could access each keyboard directly, thereby providing the behavior you want.
You cannot without writing your own custom keyboard driver. Windows combines the input from all keyboards and mice into one message queue. However, if you write your own custom USB keyboard driver, and you modify the game code, you could access each keyboard directly, thereby providing the behavior you want.
 
Solution