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.
Option Compare Database
Dim blnOn
Private Sub cmdCommand_Click()
If blnOn = True Then
Me.TimerInterval = 0
Else
blnOn = True
Me.TimerInterval = 5
End If
End Sub
Private Sub Form_Timer()
Me.txtText = Nz(Me.txtText, 0) + 1
End Sub