Some of you might recall this query from a previous thread of mine:
-----------------------------------
cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=c:\common\;" & _
"Extended Properties=dBASE IV;" & _
"User ID=Admin;Password="
strSQL = "SELECT Username, name FROM Users WHERE Username NOT IN (SELECT GMLoginname FROM myTable IN 'c:\myPath\Lat.mdb')"
etc....
-----------------------------------
Well we added a password to the Lat.mdb. That broke it. The connectionstring is for the 'users.dbf' table, but how do I set a password for the other, mdb table? There was no connectionstring for it, the IN took care of that! Now with the password protection, that cool query won't work! Any clues? As usual, thanks in advance!
--Bill
One may not reach the dawn save by the path of the night
--Kahlil Gibran
-----------------------------------
cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=c:\common\;" & _
"Extended Properties=dBASE IV;" & _
"User ID=Admin;Password="
strSQL = "SELECT Username, name FROM Users WHERE Username NOT IN (SELECT GMLoginname FROM myTable IN 'c:\myPath\Lat.mdb')"
etc....
-----------------------------------
Well we added a password to the Lat.mdb. That broke it. The connectionstring is for the 'users.dbf' table, but how do I set a password for the other, mdb table? There was no connectionstring for it, the IN took care of that! Now with the password protection, that cool query won't work! Any clues? As usual, thanks in advance!
--Bill
One may not reach the dawn save by the path of the night
--Kahlil Gibran