Allow User to Change Timer Interval

CrazyCoder

New member
Joined
Jan 25, 2009
Messages
3
Programming Experience
Beginner
Hey guys,

I was wondering how do I make it so that people that use my program can change the Timer Interval. So they can set the timer.

Thanks in advanced,
CrazyCoder :)
 
You can use a NumericUpDown control and put the following code it the ValueChanged event.

VB.NET:
timer1.interval = numericupdown1.value

Let me know if it helps :)
 
You can use a NumericUpDown control and put the following code it the ValueChanged event.

VB.NET:
timer1.interval = numericupdown1.value

Let me know if it helps :)

I would suggest using Option Strict On before you do this :)
 
Back
Top