Page 1 of 1
Keypad?
Posted: Wed Feb 10, 2010 10:42 pm
by y offs et
Any way to use keypress on the keypad (numpad)?
Posted: Thu Feb 11, 2010 7:20 am
by VilleK
It should work with the virtual key codes:
http://www.kbdedit.com/manual/low_level_vk_list.html
VK_NUMPAD0 0x60
etc.
Note that the values are in hex and you need to convert them to decimal. 0x60 is 96 decimal.
Posted: Thu Feb 11, 2010 7:32 am
by Kjell
0 / Ins / 0x60 / 96 is the only one working for me somehow.
K
Posted: Thu Feb 11, 2010 8:17 am
by VilleK
It could be I filter out key codes that aren't normal characters, I'll look into it.