Hi Experts,
I have an MS Access 2010 DB with running successfully on a number of machines. I recently tried to run the same Access DB on a new machine and I am encountering a problem. I narrowed down the problematic code :
on the problematic machine, IE.ReadyState is not functioning.
I compared my successful environments with the new environment and I see 4 differences:
(1) windows operating system (7 vs 8.1)
(2) other versions of Office installed (none vs Office 2013)
(3) version of MS Office Access DB engine object library (14 vs 15)
(4) Version of Access 2010 (English vs Japanese)
I thought #3 was the most suspect. So the next logical thing to do I thought would be to uncheck the MS Office 15.0 Access DB engine object library in my problematic environment (easy). And then check the MS Office 14.0 Access DB engine object library. However, I do not see the MS Office Access DB engine object library in my list of references. How can I get the 'MS Office 14.0 Access DB engine object library' in my list of references? Does anyone know where I can find this file?
Any guidance would be greatly appreciated.
Thanks,
Lon
I have an MS Access 2010 DB with running successfully on a number of machines. I recently tried to run the same Access DB on a new machine and I am encountering a problem. I narrowed down the problematic code :
Code:
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.navigate url
While IE.ReadyState - 4: WaitTime (1): Wend
on the problematic machine, IE.ReadyState is not functioning.
I compared my successful environments with the new environment and I see 4 differences:
(1) windows operating system (7 vs 8.1)
(2) other versions of Office installed (none vs Office 2013)
(3) version of MS Office Access DB engine object library (14 vs 15)
(4) Version of Access 2010 (English vs Japanese)
I thought #3 was the most suspect. So the next logical thing to do I thought would be to uncheck the MS Office 15.0 Access DB engine object library in my problematic environment (easy). And then check the MS Office 14.0 Access DB engine object library. However, I do not see the MS Office Access DB engine object library in my list of references. How can I get the 'MS Office 14.0 Access DB engine object library' in my list of references? Does anyone know where I can find this file?
Any guidance would be greatly appreciated.
Thanks,
Lon