How To Catch The "ENTER" button?

ceaser

Active Member
Licensed User
Hi All:confused:

The PDAs that I use have also a keyboard (i.e. Workabout_pro from Psion), where it is possible to enter values via the keyboard and not from the virtual keyboard. In VB when you press the "Enter" button, it returns chr(13) and in this way I can set the focus to the next input box.

Now.....I can catch all the keys except the "Enter" button. Is there a way around it?:sign0085:

Thanks
Michael
 

timsteeman

Member
Licensed User
Longtime User
Maybe foolish, but....

Check the character number?


Msgbox(Asc(textbox1.Text),"Character Number")
 
Top