can not connect to the mdb database



Can you show me what is wrong with this code? I can not open the database's
table using the following ADO code in the Visual Basic 6.0 enviroment

Dim myDB As ADODB.Connection
Dim rsL As ADODB.Recordset

Set myDB = New ADODB.Connection

strConnText = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"DataSource = C:\Access\db1.mdb;"

myDB.ConnectionString = strConnText
myDB.Open
Thanks
.