Hi,
somebody knows how to handle event from 2 key pressed togheter?
thanks
Keys
Well, you won't ever get two keys pressed together in the event receiver because even though the action of pressing the keys may be parallel to a user, it will be serial to a computer.
What you will need to do is store what keys are pressed down and then check for the combination of keys.
For special keys, I store the state. CTRL, ALT, SHIFT, & "Windows", so if another key is pressed, it will function as expected.
There should be another post in here describing storing key states.
What you will need to do is store what keys are pressed down and then check for the combination of keys.
For special keys, I store the state. CTRL, ALT, SHIFT, & "Windows", so if another key is pressed, it will function as expected.
There should be another post in here describing storing key states.
Crud, how do I do this again?
-
Helioplex