Private Sub DBCombo1_Click(Area As Integer)
Dim sMyCriteria As String
Dim sSQL As String
Dim cn As ADODB.Connection
Dim rs As ADODB.Recordset
Dim sDatabasePath As String
Set cn = CreateObject("adodb.connection"

Set rs = CreateObject("adodb.recordset"

cn.ConnectionString = "Driver={Microsoft Access Driver (*.mdb)};Dbq=f:\db1.mdb;Uid=Admin;Pwd=;"
cn.Open
rs.Open sSQL, cn, adOpenDynamic, adLockOptimistic, adCmdText And adExecuteNoRecords
This is where we are.
command text not set for the command object.
Again I really appreciate your help and patient.
whether we get this or not you will get my vote.
sMyCriteria = DBCombo1.Text
sSQL = "SELECT * FROM EMPLOYEES WHERE FIELD='" & sMyCriteria & "'"
Text1.Text = rs("Name"

Text2.Text = rs("Title"

Text3.Text = rs("Department"

rs.Close
Set rs = Nothing
End Sub