How do you send NumPad keys using SendKeys?

Viewed 6769

I want to send the keystroke of NumPad keys (1-9).

I tried to use:

SendKeys.SendWait("{NUMPAD1}");

but it says

System.ArgumentException: The keyword NUMPAD1 is invalid (translated)

So i don't know the right keycode for the NumPad.

2 Answers
Related