| | |
Beep on Events (MSVC++ 2005)
Please support our C++ advertiser: Intel Parallel Studio Home
Thread Solved |
I am having trouble finding out info regarding how to stop my application from "Beeping" every time I change focus with the "ENTER" key.
For the sake of clarity here is the specific action and code which produces a sound (which I want to eliminate):
I am simply trying to change focus from one textBox to the other, when for instance a Last Name is entered, the user presses ENTER and it switches to the next textbox.
The code works, but every textbox that I hit "Enter" on, I get an Alert or BEEP that I want to go away.
For the sake of clarity here is the specific action and code which produces a sound (which I want to eliminate):
I am simply trying to change focus from one textBox to the other, when for instance a Last Name is entered, the user presses ENTER and it switches to the next textbox.
C++ Syntax (Toggle Plain Text)
private: System::Void textLast_KeyDown(System::Object^ sender, System::Windows::Forms::KeyEventArgs^ e) { if (e->KeyValue == (char)13) { textFirst->Focus(); } }
The code works, but every textbox that I hit "Enter" on, I get an Alert or BEEP that I want to go away.
Last edited by chococrack; Jan 7th, 2009 at 4:08 pm.
I would love to change the world, but they won't give me the source code
It's not so much a beep as it is an event sound. I'm writing this for a person who will be running this on his own machine, so disabling the windows sounds is not an option. It sounds as though it is playing the alert sound (similar to a popup "OK" box Alert). I'm not too sure where to go from here, as the textboxes work as they should but produce a sound I do not want. :/
I would love to change the world, but they won't give me the source code
•
•
Join Date: Jan 2009
Posts: 79
Reputation:
Solved Threads: 12
Okay I'm out of my league hear, but this sounds similar to your problem.
http://social.msdn.microsoft.com/For...-fe4203c0ab81/
http://social.msdn.microsoft.com/For...-fe4203c0ab81/
Referencing the link: http://www.vbforums.com/showthread.php?t=527469
MatEpp's comment lead me to a working solution.
the actual code which eliminates the sound for me is as follows:
Thanks for the help!
MatEpp's comment lead me to a working solution.
the actual code which eliminates the sound for me is as follows:
C++ Syntax (Toggle Plain Text)
if (e->KeyValue == (char)13) { e->SuppressKeyPress = true; // the magic textBox2->Focus(); }
Thanks for the help!
Last edited by chococrack; Jan 11th, 2009 at 12:52 am.
I would love to change the world, but they won't give me the source code
![]() |
Other Threads in the C++ Forum
- Previous Thread: variables with brackets??
- Next Thread: want to login to windows progammatically
| Thread Tools | Search this Thread |
api array arrays based binary c++ c/c++ calculator char char* class classes code coding compile compiler console conversion convert count database delete deploy desktop developer directshow dll download dynamic dynamiccharacterarray email encryption error file forms fstream function functions game generator givemetehcodez google graph gui homeworkhelp iamthwee ifstream input int java lib linkedlist linker list loop looping loops map math matrix memory multiple news number numbertoword output pointer problem program programming project python random read recursion recursive reference rpg sorting string strings temperature template templates test text text-file tree unix url variable vector video visual visualstudio win32 windows winsock wordfrequency wxwidgets





