I'm trying to generate key press/release using SendInput and having trouble with two particular keys: Num-lock and Pause/Break. I have been using KEYEVENTF_SCANCODE tag and according to MSDN, when this tag is used, the virtual key (ki.wVk) is not needed as the scancode provided will be used to identify the key. The following code works for every key except for Num-lock and Pause/Break. It's a matter of changing the scancode and the flag KEYEVENTF_EXTENDEDKEY to generate other keys. I noticed that the virtual key generated by this method is 0xff which is incorrect for Num-lock (the correct virtual key is 0x90).

INPUT input[2];
::ZeroMemory(input, sizeof(input));        
input[0].type = input[1].type = INPUT_KEYBOARD;
input[0].ki.wVk = input[1].ki.wVk = VK_NUMLOCK;   //Not actually needed with KEYEVENTF_SCANCODE
input[0].ki.wScan = input[1].ki.wScan = 0x45;
input[0].ki.dwFlags = KEYEVENTF_SCANCODE | KEYEVENTF_EXTENDEDKEY;
input[1].ki.dwFlags = KEYEVENTF_SCANCODE | KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP;
::SendInput(2, input, sizeof(INPUT));

} I can fix this problem by removing KEYEVENTF_SCANCODE and provide the virtual key (ki.wVk) along with the scancode.

INPUT input[2];
::ZeroMemory(input, sizeof(input));        
input[0].type = input[1].type = INPUT_KEYBOARD;
input[0].ki.wVk = input[1].ki.wVk = VK_NUMLOCK;
input[0].ki.wScan = input[1].ki.wScan = 0x45;
input[0].ki.dwFlags = KEYEVENTF_EXTENDEDKEY;
input[1].ki.dwFlags = KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP;
::SendInput(2, input, sizeof(INPUT));

So my question is why doesn't the first method work? Especially why it works with every other keys except for two: Num-lock and Pause/Break.

link|improve this question
Its the windows API don't question it too much. I had this issue before and once I fixed it I never looked back too hard at it. – Jesus Ramos Jun 30 '11 at 1:58
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.