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_Open(Cancel As Integer)
'Displays while waiting for timer to crank up
Me.txtOmega = Time
End Sub
Private Sub Form_Timer()
Me.txtOmega = Time 'Display time
' Me.txtDayRunner = Date 'Display date
End Sub
Private Sub Form_Open(Cancel As Integer)
Me.lblClock.Caption = Format(Now, "dddd, mmm d yyyy, hh:mm:ss")
End Sub
Private Sub Form_Timer()
Me!lblClock.Caption = Format(Now, "dddd, mmm d yyyy, hh:mm:ss")
End Sub