Re: noise
- Posted by Derek Parnell <ddparnell at bigpond.com> Aug 22, 2001
- 429 views
----- Original Message ----- From: "George Walters" <gwalters at sc.rr.com> To: "EUforum" <EUforum at topica.com> Subject: Re: noise > Thanks for the reply Derek. I'm using onKeyDown to be able to respond to > 'Return', 'Escape', 'Down Arrow', and 'Up Arrow'. This works fine. I get > control and do my thing but windows 'rings a bell' when I hit 'escape' or > 'return'. Is there a way do defeat the bell? Hi George, I don't know the rationale for this but Microsoft in their wisdom decided that some keys would go through KeyPress and others wouldn't. It looks as if those keys that generate "characters" in the ASCII range do go through KeyPress. For you this means that you can trap the Escape and Return keys there and the arrow keys in KeyDown. ----------- Derek