OK I want to prevent my prog. from actually showing the end of file of beginning of file info (blank spaces)
Can you make the Prev. and next buttons stop at the first and last records in a DB?

Code:
Private Sub cmdPrev_Click()
cmdNext.Enabled = True
If datMakes.Recordset.BOF = False Then
datMakes.Recordset.MovePrevious
Else:
datMakes.Recordset.MoveNext
cmdPrev.Enabled = False
Exit Sub
End If
End Sub