1
I’m wearing a NumericUpDown
in an application where the user can set a desired time for any action to be performed. There are three NumericUpDown
: one for the hour (from 0 to 23), another for minute (0 to 59) and another to second (0 to 59).
The problem is that when the user increments the values by means of the NumericUpDown
when the current value is the maximum value set (23 for hours and 59 for minutes and seconds), of course the value is no longer incremented. However, I would like to know if there is any way to make the values return to the minimum in this situation (i.e., to 0).
Thank you, @stderr !
– Leandro