krnsmartazz
Technical User
Is there any way to make a clock using a text box and make it look nice? Are there any easier ways to make a clock?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Form_Timer()
Me.Label0.Caption = Format(Now(), "hh:nn:ss am/pm")
End Sub