numericupdown continuous cycle

Zexor

Well-known member
Joined
Nov 28, 2008
Messages
520
Programming Experience
3-5
can a numericupdown control cycle continuously? when it hit max +1 it goes to min, and when u hit min -1 it goes to max?
 
If you want a 0-100 loop for example then just set the max to 101 and the min to -1 and handle the valuechanged event to say if value = 101 then value = 0, else if value = -1 then value = 100
 
Back
Top