I have numericUpDown control minValue - 0 maxValue - 100.

I create binding to this control.

If the value changes to 101 will be the exception, which I do not need, and I would like to value is not specifically mentioned. how to do it ?

UPDATE:

BindinHelper.BindField(this.nUpDownExecArea, "Value", TempConfigClass, "ExecArea");

BindField:

public static void BindField(Control control, string propertyName,
               object dataSource, string dataMember)
        {
            Binding bd;

            for (int index = control.DataBindings.Count - 1; (index == 0); index--)
            {
                bd = control.DataBindings[index];
                if (bd.PropertyName == propertyName)
                    control.DataBindings.Remove(bd);
            }
            control.DataBindings.Add(propertyName, dataSource, dataMember, false, DataSourceUpdateMode.OnPropertyChanged);
        }

I set TempConfigClass.ExecArea = 99999;

does not result in errors, but when I go to a tab (tabcontrol) where the error appears to be numericUpDown

link|improve this question

77% accept rate
1  
It would probably help if you clarified this question a bit - it may help if you posted a short code sample to clarify the question. – Justin Jul 20 '11 at 16:05
When you say: "If the value changes to 101" are you referring to programatically in the code? If that's the case the code is correct, you are setting the value out of range of the min and max you specified. – James Michael Hare Jul 20 '11 at 16:06
1  
The simple solution is do not allow value to be greater then the maxValue. If you want help you must post what you have. – Ramhound Jul 20 '11 at 16:06
@James Michael Hare, I can not get the max and min, I ask where the data context – simply denis Jul 20 '11 at 16:12
@Simply Denis - What do you mean by "I cannot get the max and min" because you should have a reference to the numericUpDown on your main program's window. – Ramhound Jul 20 '11 at 16:16
show 3 more comments
feedback

1 Answer

An argumentOutOfRangeException is telling you that the argument received was exceptional. However if your app is designed in a way to expect certain arguments there are two ways to go about it:

The recommended way - Simply check the value prior to the binding taking place and prevent it going any further if out of range

or - Use a try/catch block to catch the specific exception only and deal with it accordingly

link|improve this answer
When I ask the data I am far from numericUpDown. and I do not know where to put the try catch – simply denis Jul 20 '11 at 16:14
Where, I do not know where I put the try catch – simply denis Jul 20 '11 at 16:19
@Ramhound - I assumed you could research that yourself ;-) simply denis - Not sure what you're talking about 'far'? – m.edmondson Jul 20 '11 at 16:19
@m.edmondson - I was saying he didn't post his Try() Catch() statement. I can write my own trivial code :-) – Ramhound Jul 20 '11 at 16:29
@Ramhound - Thought your comment was directed at me – m.edmondson Jul 20 '11 at 16:31
feedback

Your Answer

 
or
required, but never shown

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