VBA CreateObject() Can’t create ActiveX component on 64Bit Windows
If you are running on a 64bit windows 7 system and have a VBA script that creates a COM/ActiveX/OLE component which fails with an error message like:
‘ActiveX component can’t create object’
Even though you know the component is registered and that you are using the correct progId etc, then it may be failing because the COM component in question is 32 bit and by default Windows7 runs the 64bit scripting engine.
If this is the case then you can get around the problem by explicitly using the 32 bit scripting environment which is most likely located here:
C:\Windows\SysWOW64\cscript.exe
So to run example.vbs in the 32bit environment use the following:
C:\Windows\SysWOW64\cscript.exe example.vbs
Hopefully you 32bit component will now load… mine did ;)