I think I hosed my self here, I added an Autonumber field to a table with 277 records in it, I then made the field a key field.
I have record navigation buttons with the following code:
Code:
Private Sub Gotonext_Click()
With Recordset
If .AbsolutePosition = .RecordCount - 1 Then
DoCmd.GoToRecord , , acFirst
Else
DoCmd.GoToRecord , , acNext
End If
End With
End Sub
Private Sub GotoPrev_Click()
With Recordset
If .AbsolutePosition = 0 Then
DoCmd.GoToRecord , , acLast
Else
DoCmd.GoToRecord , , acPrevious
End If
End With
End Sub
When I use the Next record button I go to the first, designed in for wraparound, but when I use the Prev button the next record is displayed and Next goes to prev.