Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How to get rid of the gong sound when enter is hit in textbox?

enter GONG hit rid sound TextBox
0
Posted

How to get rid of the gong sound when enter is hit in textbox?

0

Subclass from TextBox, override ProcessDialogKey and do the following: protected override bool ProcessDialogKey(Keys keyData) { if(keyData == Keys.Return) { return true; } else if(keyData == Keys.Escape) { return true; } else return base.ProcessDialogKey(keyData); } The idea is to prevent the base class from processing certain keys.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123