Home All Groups Group Topic Archive Search About

Simple Question - Enter "Ding"

Author
23 Feb 2006 1:55 PM
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?

--
Al Reid

Author
23 Feb 2006 2:45 PM
Kyjan
You're going in the right direction; however, you need to set the key
to handled in the KeyPress event.

Raymond
Author
23 Feb 2006 2:55 PM
Al Reid
"Kyjan" <HolySaphAn***@gmail.com> wrote in message news:1140705904.418057.18200@v46g2000cwv.googlegroups.com...
> You're going in the right direction; however, you need to set the key
> to handled in the KeyPress event.
>
> Raymond
>

Thanks, that did the trick.

--
Al Reid