Keycodes

I have been using the keybd_event to make some programs and I have been able to use keys that aren't A-9 by doing this
1
2
3
4
  keybd_event( VK_NUMLOCK,
                      0x45,
                      KEYEVENTF_EXTENDEDKEY | 0,
                      0 );

But when i try to use the A-9 I can't because the keycodes provide you with the hexadecimal but not the name (ex.) VK_NUMLOCK, VK_ENTER etc.

Sorry if im asking too much but i really don't understand what I am supposed to do. Maybe provide a NULL argument or something?
You should use the ASCII values
Topic archived. No new replies allowed.