Hi
I want to enter a coding which should find farzana though i type far or zana in the txtsearch.Text.
if txtsearch.Text = far
then it should display a record existing with farzan or farhan or any other record having far in the record.
can some body please help me :
rs.Find "first_name='" & Trim(txtsearch.Text) & "'"
If rs.EOF Then
MsgBox ("Record Not Found")
Else
MsgBox ("Found")
'display2
'displaywithloop2
End If
End If