I'm not sure how similar ADODC is to DAO, but this is what I've used in the command buttons click event
Dim Sql as String
Sql = "SELECT * FROM Table WHERE Str = '" & txtInputBox & "'"
Set Rs = Db.OpenRecordset (Sql)
Table, txtInputBox are my substitutions, I think you'll understand how you apply to your table and text box.
This it's just a matter of cycling through the records returned by Rs and populate whatever text, list or combobox or whatever.