Hey, i am making a program to sendkeys to a program.
But does anyone know how to send a key from the NUMBER PAD?
IE, send the keypad number 5, how would you do that?
Printable View
Hey, i am making a program to sendkeys to a program.
But does anyone know how to send a key from the NUMBER PAD?
IE, send the keypad number 5, how would you do that?
use SendKeys
:)Code:SendKeys "{5}"
not the numbers that are above to Letters, but you know like most keyboards have the KEY-PAD or NUMBER Pad they call it.
Its to the very right side of the keyboard, where Number lock is.
IS there a way to access these?
Hi, there.
Have you tried SendKeys "{NUMLOCK}5"?
doesn't that hit Num lock then hit 5?
but that is on the numbers....?
I mean the number pad..
hi there, im also doing a numpad. Tried setting sendkeys "{NUMLOCK}" but doesnt switch on my numlock. Any idea why?
vbKeyNumpad0 through vbKeyNumpad9 are the key code constants for the numeric key pad. Try those. :)