Dear all,
I am using Infragistics.Win.UltraWinEditors.UltraNumericEditor which has been set masked input, maxvalue and minvalue. When I have inputted something wrong, it will prompt with the sound.
I don't want the sound. I want the message box to show. How can I do??
use the event of ValidationError as follows
private void ultraNumericEditor1_ValidationError(object sender, Infragistics.Win.UltraWinEditors.ValidationErrorEventArgs e)
{
e.Beep = false;
e.RetainFocus = true;
MessageBox.Show("");
}