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.
[blue]Public Sub NextRec(movNext As Boolean)
Dim rst As DAO.Recordset
Set rst = Me.RecordsetClone
If rst.BOF Then
MsgBox "No Records . . . Can't Move!"
Else
If movNext Then
rst.MoveNext
If rst.EOF Then rst.MoveFirst
Else
rst.MovePrevious
If rst.BOF Then rst.MoveLast
End If
Me.Bookmark = rst.Bookmark
End If
Set rst = Nothing
End Sub[/blue]
[blue] Call NextRec(True)[/blue]
[blue] Call NextRec(False)[/blue]