Hello guys, currently I use this way to search/move from record to record:
Code:
Private Sub Search_AfterUpdate()
    Dim RS As Object
    Set RS = Me.Recordset.Clone
    RS.FindFirst "[id] = " & Me.Search
    If Not RS.EOF Then Me.Bookmark = RS.Bookmark
End Sub
What is the fastest and most elegant way to do so?