Simple Question - Enter "Ding"

  • Thread starter Thread starter Al Reid
  • Start date Start date
A

Al Reid

I'm using vb2005. The users want to use the enter key to navigate instead of or in addition to the tab key. That's easy enough.
How do I get rid of the ding when hitting the enter key. I have e.Handled in the KeyUp event where I use SelectNextControl. That
didn't do it. I then added e.Handled to the KeyDown event. I still get the ding. Is there something else I need to do?
 
You're going in the right direction; however, you need to set the key
to handled in the KeyPress event.

Raymond
 
Back
Top