Are you trying to set the connection string directly or if you are calling
CurrentProject.CloseConnection() followed by a call to
CurrentProject.OpenConnection(strConnect, user, password)?
CurrentProject.CloseConnection
CurrentProject.OpenConnection connectionString, user, password
And when opening the connection, don't use the version with the
Microsoft.Access.OLEDB.10.0 provider; as this will be set up automatically
by Access. Access (or ADP) opens three connections (and sometimes more)
when connecting to the SQL-Server and it is possible that with your method,
all these connections aren't set up correctly.
More info:
http://support.microsoft.com/kb/q240293/
http://support.microsoft.com/kb/281784/

Signature
Sylvain Lafontaine, ing.
MVP - Technologies Virtual-PC
E-mail: http://cerbermail.com/?QugbLEWINF
> Hi,
>
[quoted text clipped - 18 lines]
>
> Just curious, I would really like to know!