I have code below, How I can connect the dbase files (Microsoft visual pro) using ADODB connection? I got the code below but it use microsoft access to connect the database.

Code:
Dim strDB, strConn As String
     'Set New connection
    Set cnnACC = New ADODB.Connection
     'String Database Path
    strDB = TextBox1.Text
    strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strDB & ";Persist Security Info=False"
     ' Open the connection
    cnnACC.Open strConn