Hi,
I'm using a Keyboard hook to intercept and handle some of the oddball keys differently. Keyboard traffic is passed to the App (after some minor fiddling) via %WM_USER calls. This is working just fine.
However a new user now wishes to use a diferent keyboard layout (German/Swiss) and it just doesn't work. So I'm confused here.
Does using a keyboard hook effectively bypass/kill all normal keyboard mapping since we're at the KeyCode level?
Is it possible to intercept only a few keys I'm interested in and forward them via %WM_USER and somehow still let windows handle everything else and return them via %WM_CHAR? If so, would this restore support for other KB mappings?
George
I'm using a Keyboard hook to intercept and handle some of the oddball keys differently. Keyboard traffic is passed to the App (after some minor fiddling) via %WM_USER calls. This is working just fine.
However a new user now wishes to use a diferent keyboard layout (German/Swiss) and it just doesn't work. So I'm confused here.
Does using a keyboard hook effectively bypass/kill all normal keyboard mapping since we're at the KeyCode level?
Is it possible to intercept only a few keys I'm interested in and forward them via %WM_USER and somehow still let windows handle everything else and return them via %WM_CHAR? If so, would this restore support for other KB mappings?
George
Comment