I want to find which character is produced when the key which is the letter V on an English keyboard is typed on a non English keyboard
I can get the keyboard layout with
And I know the scan code for the key is 47
How do I find the actual character?
I can get the keyboard layout with
Code:
xx = GetForegroundWindow&()
yy = GetWindowThreadProcessId&(xx, 0)
KeyBoardLayout = GetKeyboardLayout&(yy)
How do I find the actual character?