I know this should be simple...but for some reason, the recordset clone is not showing BOF as true when I'm on the first record in the table......please see code below:
Thanks!
Code:
On Error GoTo Error_Handler
Dim rs As Recordset
Set rs = Me.RecordsetClone
If rs.BOF = True Then
MsgBox "You are at the first record."
Else
DoCmd.GoToRecord , , acPrevious
OpenPath
End If
Exit_Procedure:
rs.Close
Set rs = Nothing
On Error Resume Next
Exit Sub
Error_Handler:
DisplayErr Err.Number, Err.Description, "frmMSDS", "cmdPreviousRecord_Click()"
Resume Exit_Procedure
Resume
End Sub
Thanks!