Dim myfind As String
myfind = InputBox("Please enter the string", "Find")
Adodc1.Recordset.MoveFirst
Do While Adodc1.Recordset.EOF <> True
If Adodc1.Recordset.Fields(list2.text).Value = myfind Then
MsgBox "Found"
Exit Do
End If
Adodc1.Recordset.MoveNext
Loop