vote up 1 vote down star
1

hello!

is it possible to edit a keystroke using a winapi keyboard hook? well, not neccesary a keyboard hook but something like it..

i wanna do something like this:

user presses key 'A'

my function adds 1 to the virtual keycode (just an example)

the 'A' becomes an 'B'

and the 'B' is sent to the destination application

thanks!

flag

3 Answers

vote up 0 vote down

See tool AutoHotkey, with source code available.

link|flag
vote up 0 vote down

I think you can do it by eating up the keystroke entered by user by applying keyboard hook. and generating key_event of the character you want.

link|flag
vote up 1 vote down

First, you need a Keyboardhook. You install a filter and the filter function receives the virtual-key code and the state of the keyboard at the time of the keyboard hook. Then you can change the virtual-key code.

Additional Links:

http://msdn.microsoft.com/en-us/library/ms644990(VS.85).aspx

http://msdn.microsoft.com/en-us/library/ms644984(VS.85).aspx

link|flag
if i understand you correct, i've already tried this. do you mean just to change the virtal code in the KBDLLHOOKSTRUCT received in the keyboardproc? – shuwo Oct 27 at 15:05
from what i've read, that's what you need to do. – Tobias Langner Oct 27 at 15:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.