A
Allen Browne
Use FindFirst on the RecordsetClone of the form to find the record again.
Assuming the primary key field is named "ID", and you want to find 44, you
would code like this:
With Me.RecordsetClone
.FindFirst "ID = 44"
If Not rs.NoMatch Then
Me.Bookmark = .Bookmark
End If
End With
Assuming the primary key field is named "ID", and you want to find 44, you
would code like this:
With Me.RecordsetClone
.FindFirst "ID = 44"
If Not rs.NoMatch Then
Me.Bookmark = .Bookmark
End If
End With