I'm using NumericUpDown
in an application where the user can set a desired time for any action to be taken. There are three NumericUpDown
: one for the hour (from 0 to 23 ), another for minute ( 0 a 59 in>) and another for second ( 0 to 59 ).
The problem is that when the user increments the values by means of the NumericUpDown
increment button when the current value is the maximum configured value ( 23 for hours and 59 for minutes and seconds), of course the value is not incremented further. However, I would like to know if there is any way to get the values back to the minimum in this situation (ie for 0 ).