My app uses a Timer. I adjust its speed by selecting values from a Popup Menu, but I’d like to use a Slider instead. This is my code:
Slider1.MinimumValue = 5
Slider1.MaximumValue = 100
Timer1.Period = Slider1.Value
I have the code in a ValueChanged Event Handler. It seems to me this should work but it doesn’t. Even at a MinimumValue of 5, the Timer moves way too fast. Any help would be greatly appreciated.
Thanks!
4 posts - 3 participants