Hello!I always hear a sound effect (Windows XP-Ping.wav), when i use the Comma-Button (on Keyboard) in ultraNumericEditor's - how can i stop this?
Much Thanks - for answer!
HI! Thanks for Answer!
I found: this.ultraNumericEditor1.KeyActionMappings!
The Default KeyActionMappings Nr. 34 + 35 are the: Decimal = ","-Button when i remove them it works great
Warning i am not sure what i do here! Here the Code: this.ultraNumericEditor1.KeyActionMappings.Remove(35); this.ultraNumericEditor1.KeyActionMappings.Remove(34);
Now no Beep-Sound ;)
Thanks @ all & Merry Christmas!
That sound is played to tell the user that they are entering an invalid character. This is a commonly used UI pattern based on the premise that a fast-typing usermight not be looking at the screen as they type, and without that sound would not know that the character they typed was not inputted.
Having said that, I think the control fires the ValidationError event when this happens, in which case you can handle the event and set the 'Beep' property of the event arguments to false.