Hi.
I realise there are 3 different timers in VB.Net but I'm not certain which I should be using for the following. Could anyone help with some basic code and type of timer I should use?
This is the scenario simplified for clarity.
Main form runs all kinds of processes etc and a timer needs to run every second that increments a label value constantly - ie label text starts at 0 and displays the seconds elapsed in real time.
I'd normally just use the Systems.Windows .Form.Timer tick to change the label text but does this get interrupted by anything being done on the form? Also I believe a System.Timers.T imer can run slow due to the time taken to run code each tick....?
Thanks!
I realise there are 3 different timers in VB.Net but I'm not certain which I should be using for the following. Could anyone help with some basic code and type of timer I should use?
This is the scenario simplified for clarity.
Main form runs all kinds of processes etc and a timer needs to run every second that increments a label value constantly - ie label text starts at 0 and displays the seconds elapsed in real time.
I'd normally just use the Systems.Windows .Form.Timer tick to change the label text but does this get interrupted by anything being done on the form? Also I believe a System.Timers.T imer can run slow due to the time taken to run code each tick....?
Thanks!
Comment