I have a main form and a subform. I want to move to a specific record in the Main form when I click on the field 'Name' in the subform, but when I do I get the message, "Not a valid bookmark". Here is the event that runs in the subform when you double-click on the 'Name' field:
Dim Main As Form, rst As DAO.Recordset
Set Main = Forms!CrossesPED2ChooseParents.Form
'Sync forms
Set rst = Me.RecordsetClone
rst.FindFirst "[NAME] = '" & Me![NAME] & "'"
Me.Bookmark = rst.Bookmark
Main.Bookmark = rst.Bookmark
Dim Main As Form, rst As DAO.Recordset
Set Main = Forms!CrossesPED2ChooseParents.Form
'Sync forms
Set rst = Me.RecordsetClone
rst.FindFirst "[NAME] = '" & Me![NAME] & "'"
Me.Bookmark = rst.Bookmark
Main.Bookmark = rst.Bookmark