Minus key on numpad not in Keys enumeration?

  • Thread starter Thread starter =?ISO-8859-15?Q?Roland_M=FCller?=
  • Start date Start date
?

=?ISO-8859-15?Q?Roland_M=FCller?=

Hello Group,

i want to know how to handle the pressed key on the numpad? I found
Keys.OemMinus but this does only follow the pressed "normal" minus key
and not the minus key on the numpad.

There is Keys.Add for the plus key on the numpad and Keys.Oemplus for
the "normal" plus key.

Please help me - thanks.


Roland
 
You don't have to search for it .. just try the reverse approach and let
your system tell you what you want.
 
You don't have to search for it .. just try the reverse approach and let
your system tell you what you want.
I just applied a KeyDown event to a control on my form, and message boxed
the e.KeyData .. Run it, press the key u want .. and you get it displayed
right there in front of you!
 
You don't have to search for it .. just try the reverse approach and let
your system tell you what you want.
I just applied a KeyDown event to a control on my form, and message boxed
the e.KeyData .. Run it, press the key u want .. and you get it displayed
right there in front of you!
 
Yes, good idea. Thanks.
You don't have to search for it .. just try the reverse approach and let
your system tell you what you want.
I just applied a KeyDown event to a control on my form, and message boxed
the e.KeyData .. Run it, press the key u want .. and you get it displayed
right there in front of you!
 
Back
Top