Hi all,
Now I want to display time on a label in user form.
I already do an other way like that :
But I want to make a small clock display time count the second,
(Ex : 00:00:00 -> 00:00:01 ->00:00:02 etc...)
Anyone can give me an ideas.
Many thanks
Now I want to display time on a label in user form.
I already do an other way like that :
Code:
Dim t As Double
t = Timer
...
<many process here>
<when finished all process>
MsgBox "DONE!", , Format(Timer - t, "0.0") & "s"
(Ex : 00:00:00 -> 00:00:01 ->00:00:02 etc...)
Anyone can give me an ideas.
Many thanks