R
RYANneedsHELP
I created a form with a search box but the form does not show a record
exists, even though if I pull up the table it shows there being records.
Interestingly, when i type the names in the form, i can search them; but when
i close out the form and reopen and search for the same record it shows
nothing (even though that record exists in the table).
I have this for my code:
Private Sub SearchLastName_AfterUpdate()
With Me.RecordsetClone
..FindFirst "SSN=" & Me!SearchLastName
If .NoMatch Then
MsgBox "No match was found"
Else
Me.Bookmark = .Bookmark
End If
End With
End Sub
exists, even though if I pull up the table it shows there being records.
Interestingly, when i type the names in the form, i can search them; but when
i close out the form and reopen and search for the same record it shows
nothing (even though that record exists in the table).
I have this for my code:
Private Sub SearchLastName_AfterUpdate()
With Me.RecordsetClone
..FindFirst "SSN=" & Me!SearchLastName
If .NoMatch Then
MsgBox "No match was found"
Else
Me.Bookmark = .Bookmark
End If
End With
End Sub