Don't want to reinitialize subform when calling form

N

nach

I use the following code in subform to see the parent record for that
particulair rec
-----------------------------------------------------------
Set rst = Me.Parent.RecordsetClone
rst.FindFirst "[CheckNumber] = " & Me![CheckNumber]
If Not rst.NoMatch Then
Me.Parent.Bookmark = rst.Bookmark
End If
rst.Close
_________________________________________
But I want the cursor to remain where I selected the record in subform
however it reinitializes puting the cursor at the first record.
I am using a query with order by in subform so bookmark does not seem to work.
 
Top