The problem is that on the Compact Framework a NumericUpDown control holds it's values as an Int16. This means that the values it can hold only range from negative 32768 through positive 32767. As your expected value of 33183 is larger than the maximum it is being interpreted as a negative number and is being adjusted to the value of the Minimum property of the NumericUpDown.
As this is a Compact Framework limitation WM5.0 should also exhibit this behaviour as the CF is independent of the OS. Both my WM2003SE Axim X30 and my WM6.0 iPAQ 214 do show this problem so I would expect a WM5.0 device to show it. Perhaps you didn't try an out of range value.
__________________
Sorry, but I don't answer questions by PM or email.
Please post your queries in the forum.
Last edited by agraham : 11-30-2009 at 12:51 PM.
|