Does anyone know a way around this? Here is a little code I have:
Set conn = New ADODB.Connection
With conn
.ConnectionString = CurrentProject.Connection
.Open
End With
The db is secure where users have to type in user id and password. The thing is, the currentproject.connection stores the USER ID, but no password, and therefore i get 'Not a valid account name of password". DAO was so much easier with set db = currentdb, but it will take me ages to convert back to DAO. Hopefully I am missing something. ADOX doesn't also have 2b used does it?
Cheers! Nick (Everton Rool OK!)
Set conn = New ADODB.Connection
With conn
.ConnectionString = CurrentProject.Connection
.Open
End With
The db is secure where users have to type in user id and password. The thing is, the currentproject.connection stores the USER ID, but no password, and therefore i get 'Not a valid account name of password". DAO was so much easier with set db = currentdb, but it will take me ages to convert back to DAO. Hopefully I am missing something. ADOX doesn't also have 2b used does it?
Cheers! Nick (Everton Rool OK!)