Im using the following code from a listbox to find a record, the problem that I have is that the list box has a FirstNamettxt coloum and a Lastnametxt coloum. As I have some people with the same First name it wont find any others only the first one in the DB i.e. John Smith and John Nokes, if John Smith was the first person to be entered clickingon John Nokes will take me to John Smiths record.
Code:
Private Sub List93_AfterUpdate()
'Findtherecord that matches the control
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[FirstNametxt] = '" & Me![List93] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub