where is my fault in this code ?
for text1 :
Private Sub Text1_Change()
Me.List2.RowSource = "SELECT * FROM Table1 WHERE " & _
(Search("[Fname]", "Table1", Nz(Me.Text1.Text))) And (Search("[Contry]", "Table1", Nz(Me.Text2.Text)))
Me.List2.Requery
End Sub
and for text2
Private Sub...