danasegarane, Thank You! That was exactly what I neededOr yes I made modifications but anyways, thanks!
One thing still:
If I want to have a Reset button that would put the stopwatch back to 00:00:00, is there an easier way to do it than this:
Because if I put it like this:VB Code:
Private Sub cmdReset_Click() Time2 = "00:00:00" lblstopwatch.Caption = "00:00:00" End Sub
...The label will show 0:00:00 instead of 00:00:00 for one second. Then it changes back.VB Code:
Private Sub cmdReset_Click() Time2 = "00:00:00" lblstopwatch.Caption = Time2 End Sub
Thank you again
Cheers, Rade




Or yes I made modifications but anyways, thanks!
Reply With Quote