Supplied provider is different from the one already in use

K

kevinlcarlson

I get this cryptic message when attempting to open an ADO connection
using VBA with Excel 2010, SS2008R2, and Win7 Enterprise 64bit.
Didn't happen with Excel 2003, SS2005, WinXPPro.

Any thoughts on why this happens and how to fix it?

Thanks!
Kevin
 
G

GS

kevinlcarlson was thinking very hard :
I get this cryptic message when attempting to open an ADO connection
using VBA with Excel 2010, SS2008R2, and Win7 Enterprise 64bit.
Didn't happen with Excel 2003, SS2005, WinXPPro.

Any thoughts on why this happens and how to fix it?

Thanks!
Kevin

Have you updated your code to use the ACE provider that Excel 2007/2010
uses? Your 2003 code would have used the JET provider, and so needs to
be revised to be version aware if you want it to work in both
environments.

If Application.Version => 12 Then
'use ACE provider connection string
Else
'use JET provider connection string
End If
</aircode>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top