dotnetprogrammer
Programmer
I need a program that will remap a PC keyboard.
In a nutshell, this is what it has to do.
When I will type:
(a) The character 'a', followed by a + (plus key), and a period, another + (plus key), and another period (i.e., a+.+.), it will fetch 'ä ' (Alt 0228) to the screen.
(b) Similarly, when I will type a + e, the program will display 'æ' on the screen.
I am thinking that, SETWindowsHOOKEX will need to intercept my keystrokes and change the output depending upon a text-template's remapping data... (get the idea?). I need the keyboard hook, thus no matter which Windows app I am using, the remapper or translator will continue to work, transparently.
I do not know anything about Windows Hook and do not know how to write the code for it. Any help will be appreciated!
Fred
In a nutshell, this is what it has to do.
When I will type:
(a) The character 'a', followed by a + (plus key), and a period, another + (plus key), and another period (i.e., a+.+.), it will fetch 'ä ' (Alt 0228) to the screen.
(b) Similarly, when I will type a + e, the program will display 'æ' on the screen.
I am thinking that, SETWindowsHOOKEX will need to intercept my keystrokes and change the output depending upon a text-template's remapping data... (get the idea?). I need the keyboard hook, thus no matter which Windows app I am using, the remapper or translator will continue to work, transparently.
I do not know anything about Windows Hook and do not know how to write the code for it. Any help will be appreciated!
Fred