I use VB5/vb6, Access Database, ADO.
I want an alternative way for ADO as “Findfirst” of DAO.
(Actually I need to know this data is in the database or not)

For Example
-------------------
DAO Code was:
Code:
dim rstUser as recordset
rstUser.FindFirst ("UsedID=" & cmbBankBr.Text )
--------------------
but this code cannot work with ADO.

any one please help me.