Hello,
I noticed this problem:
Drop an UltraNumericEditor on your form, set NumericType = double, SpinBurronDisplayStyle = Always, MaxValue = 0.15.
Run the app and use the up spinning button to change the decimal numbers. The maximum value it reaches is 0.14 (it should be 0.15). If you try the same with the up arrow key you'll notice the same behavior.
If you type 0.15 and then tab out of the control there's no error (that's the expected behavior). That tells me the validation is happening fine. If I type 0.16 and try to tab out the focus remains on the control, which means the maximum has been exceeded.
I'm using Version 2009 vol 1.
Thanks.
Ok I found a way to make it work.
If I set the SpinIncrement (make it not null), the MaxValue starts working as expected.