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.
Me.TimerInterval = 8000
Private Sub Form_Timer()
On Local Error GoTo FTError1
DoCmd.GoToRecord , , acNext
Exit Sub
FTError1:
If Err = 2105 Then
MsgBox "Slide Show Finished", vbExclamation
Me.TimerInterval = 0
Else
MsgBox "Error during slideshow", vbCritical
Me.TimerInterval = 0
End If
Resume FTEnd
FTEnd:
On Error GoTo 0
End Sub
Me.TimerInterval = 0