Declare
Protected Friend withevents tmr as New Timer ' Member variable
In the code editor in the upper left hand window select tmr
In the upper right hand window select Tick event
That will create an event handler in your source.
Intialize the timer in the form load
tmr.inteval = number of desired millisconds between ticks
tmr.start
|