Hi, I try to use a UltraMaskedEdit for enter Time value, I set EditAs : Time and InputMask at Time.
I add a SpinEditorButton and when I'm editing the time, the SpinEditorButton doesn't increment or decrement the hours or the minutes.
How could I do that ?
I've try with the ume_EditorSpinButtonClick() event but I doesn't find the solution (or a mors automatic method).
ps : I use C#
Oups, I found, I was using the ButtonRigt property and not the SpinButtonDisplayStyle Propertie.
The SpinButtonDisplayStyle will show the control's built-in spin button which will automatically spin the value for you.
The SpinEditorButton in the ButtonsRight collection has no connection to the data in the control. It just fires an event which you could handle to do whatever you want.
Ok, thanks.