danasegarane, Thank You! That was exactly what I needed Or 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:
VB Code:
  1. Private Sub cmdReset_Click()
  2.     Time2 = "00:00:00"
  3.     lblstopwatch.Caption = "00:00:00"
  4. End Sub
Because if I put it like this:
VB Code:
  1. Private Sub cmdReset_Click()
  2.     Time2 = "00:00:00"
  3.     lblstopwatch.Caption = Time2
  4. End Sub
...The label will show 0:00:00 instead of 00:00:00 for one second. Then it changes back.

Thank you again
Cheers, Rade