I have a combo box being used to locate specific members. When I have two members with the same last name I can’t get it to go to the second person. The Row Source reads SELECT qryMembership.LastName, qryMembership.FirstName, qryMembership.MembershipID FROM qryMembership; there is one bound column. Column count is 3. The event procedure code reads as follows
Private Sub Combo46_AfterUpdate()
‘ Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst “[LastName] = ‘” & Me![Combo46] & “‘”
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
Thank you for helping me work on my bugs.
Fay