Is there a way to recognise key gestures as "VK_CONTROL+S"? On the onKey event I only get each key separately. I have created a key manager ([Login to see the link]). I store the "VK_CONTROL" key there and combine it with the next key pressed. If I then hold the "VK_CONTROL" key down and press another key, only the newly pressed key is recognised.
CONTROL pressed => store this
S key pressed => use it as VK_CONTROL+S
CONTROL still pressed
O key pressed => only the O key will be recognised.