views:

61

answers:

2

How do I force the slider in the trackbar to be in the leftmost position?

+2  A: 
trackBar1.Value = trackBar1.Minimum
Joey
+1  A: 

does this:

trackBar1.Value = trackBar1.Minimum;

not work for you ?

Bob Moore
Hmmm, methinks SO's new post detector isn't working very well. I didn't get warned of Johannes' reply before posting mine. At least it looks like we both checked with the compiler before posting :-)
Bob Moore