|
Re: Visual Basic Current Time On Form
There is a timer object you can add to the form, it should be a little stop watch-like looking icon on the tools side bar. After adding it, set the interval to the number of miliseconds you want the timer to iterate itself (in this case, 1000 for one second, or 60000 for a minute).
The code you want executed goes inside of the timer itself.
|