Due to my application being a quadratic root solver, and receiving input from a NumericUpDown in the form of 0 will throw a divide by zero error, I was wondering if it was possible to be able to specify that particular NumericUpDown control, not able to be set to 0 at all. Or, is it just easier to catch that with a conditional and resolve it?

link|improve this question

68% accept rate
feedback

2 Answers

up vote 1 down vote accepted

You can create a check in the Validating-event

private void numericUpDown1_Validating(object sender, CancelEventArgs e)
{
    if ((sender as NumericUpDown).Value == 0)
    {
        e.Cancel = true;
    }
}

But you also need the check in your code, always validate input...

link|improve this answer
feedback

NumericUpDown has two properties calld Minimum and Maximum which set the min and max value for your up/down control. You can just set its Minimum to 1 so the user won't be able to select 0.

link|improve this answer
Yes, but I also need to account for the fact that I can calculate negative values, just not zero. – Zach Nov 8 '10 at 13:41
1  
mm in that case i think the only solution will be to handle the 0 when the NumericUpDown value change or in your function – il_guru Nov 8 '10 at 13:47
Yeah, ok thanks – Zach Nov 8 '10 at 13:57
feedback

Your Answer

 
or
required, but never shown

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