Mapping enter key in the number key pad to tab key

N

newbieto.net

I have a requirement to map the enter key in the number pad to behave
like a tab key in a asp.net application. Since the keydown event of any
control in asp.net returns 13 (keycode) for both the enter keys I'm not
able to get hold of num pad enter key event. I would appreciate any
help on this.
 
G

Guest

i think youll be unable to diferentiate between enters... they are exactlly
the same...
you must to find another way... may be, you could say to your people to use
the alt + enter to go down... anyway they use one hand on the number pad...
 
G

Guest

You should be able to use the Keyup and Keydown events since they pass the
actual key codes for various keys and not the ascii values.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top