FindRecord
This work interms of finding the record but I don't know how to move the bookmark (record pointer) in the subform (subfrmCompaniesList).
Private Sub cmdFind_Click()
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Name] Like '" & Me![txtCoName] & "*'"
If rs.NoMatch Then
MsgBox Me![txtCoName] & " not found"
Else
Me.Bookmark = rs.Bookmark
Forms!frmCompaniesList!subfrmCompaniesList!Name.SetFocus
End If
End Sub
I am basically trying to achive a similar effect you get with this!!Screen.PreviousControl.SetFocus
DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70
Please help!!!

