My friend is learning Norwegian and i want to make a global hot key program which sends keys such as
æ
ø
å
My problem is that keybd_event function wont allow me to send those keys, i seem to be restricted to the virtual key codes is there another function that i could use or some trick to sending them?
You have to use SendInput instead. keybd_event does not support sending such characters (except if they are already in the current codepage, like on Norwegian computers). A bit of sample code to send an å:
In case you didn't know: it is easy to install additional keyboard layouts on Windows and switch between them with a shortcut.
Lykke til!