hi, I want to create ADO recordset of a Paradox file, but then the file is password-protected. how can I modify the code so that can open? (the codes work fine with non-password-protected paradox file).Thanks...
Dim dbConn, rsConn, strSQL
Set dbConn = CreateObject("ADODB.connection"
dbConn.Open ("dsn=testing"
strSQL = "select * from Test1"
Set rsConn = dbConn.Execute(strSQL)
Dim dbConn, rsConn, strSQL
Set dbConn = CreateObject("ADODB.connection"
dbConn.Open ("dsn=testing"
strSQL = "select * from Test1"
Set rsConn = dbConn.Execute(strSQL)