can i mark a row in a recordset then move the recordset and then come back to where i was?
Printable View
can i mark a row in a recordset then move the recordset and then come back to where i was?
Yes you can. You have to use a Variant variable though.
.Code:Dim X As Variant
X = rs.Bookmark
rs.MoveLast
rs.Bookmark = X