The main question is this:
I want to show the value in the NumericUpDown. And whant it to be outside the range.
NumericUpDown nud=new NumericUpDown() ;
nud.Min=10;
nud.Max=20;
nud.Value=30; //Any way to do that????????? Now it is throwing ArgumentOutOfRa ngeExaption. Is it possible to cancel this exaption or ignore it? I need to allow the value to be outside the range.
I know it is not possible...
User Profile
Collapse
-
-
I want to show the value in the NumericUpDown. And whant it to be outside the range.
NumericUpDown nud=new NumericUpDown() ;
nud.Min=10;
nud.Max=20;
nud.Value=30; //Any way to do that?????????
I know it is not possible in a given control design, but maybe there is some workaround?
It is not my idea to do so, but the project meneger's :)...Leave a comment:
-
NumericUpDown set the Value property outside the bounds
Hi,
Is there any way to display a value in the NumericUpDown control that is bigger than Max or smaller than Min?
Especially when I am just creating the control, not when the user changes it !!!
As I can see there is a check happening whenever I am initializing the Value property. And if the value is outside the bounds - ArgumentOutOFRa ngeExeption is thrown. Is there any way to ignor this exaption or...
No activity results to display
Show More
Leave a comment: