SHIFT key is incorrectly detected in keyboard state when using Windows keyboard hook?

You are using a low-level keyboard hook, which runs in-thread. Therefore, when you call GetKeyboardState you are getting the state of your own local keyboard, not the state of Notepad's keyboard. If you want to continue along this route, you need to track the shift key states manually.

Why not just process normal keyboard messages in your application? Why do you need a global hook? If you process them normally, then shift key processing will have occurred and when you call GetKeyboardState you will see the appropriate key states.

Converting raw keyboard activity into typed characters is notoriously difficult. In addition to shift key states, you have to worry about Caps Lock and IMEs.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions