Is there any code for real time clock which updating minute to minute? :)
![]() |
Is there any code for real time clock which updating minute to minute? :)
just to show you how to do this.
create a new form.
add a label to it
in the from properties, find Timer Interval and set it to 1000
now go to the code...
Private Sub Form_Timer()
Label0.Caption = Format(Time(), "hh:mm:ss")
End Sub
Thanks for the reply but I tried it was static. Is there any other code?
That works for me. Did you make sure to set the Timer Interval property?
All times are GMT -7. The time now is 09:49 PM. |