Navigation Keys

  • Thread starter Thread starter Aaron
  • Start date Start date
A

Aaron

My client would like the nav up and down keys on the handhelds they're
using for the application I'm building in VB.NET to scroll a listbox
or a datagrid up and down, and the enter key to select the row/record
and call whatever code necessary. How do I implement such a thing?
Searching the web, there doesn't seem to be much help out there
regarding this.

Thanks
 
Nav keys should already scroll your grid provided that it has focus. Enter
key is just that - Enter key. To keep focus on your grid you may want to
process LostFocus event
 
Sounds good to me...another question then, what if he comes back to me
and says he wants certain buttons on his forms to be activated with
any of the up, down, left, or right nav keys. Is this possible, if so
how?
 
Back
Top