Hi i will describe my problem.
When focus is on TextBox and we press ENTER or ESC then we will hear that sound. I'm trying to disable that. Did any one got that problem before ? I was trying to create my own SilentTextBox which will inherit from TextBox and disable that sound by overriding OnKeyPress. OnKeyDown, OnKeyUp and OnPreviewKeyDown.
For example
protected override void OnKeyPress(KeyPressEventArgs e)
{
if ((e.KeyChar != 13) || (e.KeyChar != 27))
{
base.OnKeyPress(e);
}
}
Unfortunately that doesn't disable that ping sound.
thx in advance for any help.