I'm using numericUpDown with C# to represent integers. But there is a problem representing "big values". For instance if I assgin 127 to numericUpDown, it's displayed correctly. However, if I assign 12912347 it gets rounded to 12912350.

How can I avoid numericUpDown rounding integers?

(numericUpDown settings are: DecimalPlaces 0; Maximum 4294967295; Minimum 0)

link|improve this question

78% accept rate
feedback

3 Answers

up vote 2 down vote accepted

All of the are decimal values and it easily covers your range. Also i'm not able to reproduce this.

So it seems, that there is a problem somewhere else in your code that performs such a rounding.

link|improve this answer
feedback

Cannot reproduce that (Fx 4).

Value, Minimum and Maximum are all decimal properties so there should not be a problem.

link|improve this answer
feedback

sorry, my mistake indeed. I used an invoke and there sth like this was done: float value = 12912347f; numericUpDown1.Value = Convert.ToDecimal(value); this conversion caused the rounding.

This question should probably be deleted.

link|improve this answer
1  
You can hit delete. – Henk Holterman Aug 9 '10 at 13:01
With too many answers and comments you actually cannot. – Hamish Grubijan Dec 6 '10 at 15:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.