myTimer.Interval
- sets how often the "Tick" event is called (in milliseconds)myTimer.Enabled
- boolean value that sets the timer to be enabled / disabledmyTimer.Start()
- Starts the timer.myTimer.Stop()
- Stops the timer.If using Visual Studio, Timers can be added as a control directly to your form from the toolbox.