ActiveX component can't create object - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T00:34:27Zhttp://stackoverflow.com/feeds/question/656934http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/656934/activex-component-cant-create-object1ActiveX component can't create objectGordyII2009-03-18T04:09:43Z2009-03-18T21:00:50Z
<p>I have just installed a third party app on my Windows Server 2008 server
and I get the "ActiveX Component can't create object" Message
when I try to access using a CreateObject in VBScript.</p>
<p>It is definitely installed and exists under "Programs and Features".</p>
<p>Does anyone have a list of things that I can check to find figure out what is going on?</p>
<p>I have now tried to register the dll using "regsvr32.exe /i bob.dll" as suggested.</p>
<p>I get this error
<hr /></p>
<p>The Module "Bob.dll" was loaded but the entry-point DllRegisterServer was
not found.</p>
<p>Make sure that "Bob.dll" is valid DLL or OCX file and then try again.
<hr /></p>
<p>I should note that this is a 32 bit application on a 64 bit machine at
this point. It also works fine on my machine which is 32 bit XP.</p>
http://stackoverflow.com/questions/656934/activex-component-cant-create-object/656937#6569370Answer by Chris Farmer for ActiveX component can't create objectChris Farmer2009-03-18T04:11:04Z2009-03-18T04:11:04Z<p>A quickie... Are you sure you have the correct progid?</p>
http://stackoverflow.com/questions/656934/activex-component-cant-create-object/656969#6569691Answer by MrTelly for ActiveX component can't create objectMrTelly2009-03-18T04:29:58Z2009-03-18T04:29:58Z<p>The app is trying to create a COM Object and even if that COM DLL exists, it may depend on another DLL which isn't installed. You can use <a href="http://www.dependencywalker.com/" rel="nofollow">DependencyWalker</a> to find out if this is the case.</p>
http://stackoverflow.com/questions/656934/activex-component-cant-create-object/658846#6588460Answer by mrTomahawk for ActiveX component can't create objectmrTomahawk2009-03-18T15:42:56Z2009-03-18T15:42:56Z<p>It really looks as though the object your referencing is not registered on the system. I know you said it's installed, but that doesn't necessarily mean its registered. To confirm this search for the progID that you used in your registry. Example for this code: set objFSO = CreateObject("Scripting.FileSystemObject") I would search for "Scripting.FileSystemObject" in the registry. I then look at registry key above itfor the found value for "InProcServer32" value. This will give you the path to the ActiveX file that it was registered from. For "Scripting.FileSystemObject" the file is "c:\windows\system32\scrrun.dll") If you can't find that your progID in the registry, then it's not registered on your system which is your problem. If it's not registered you need to find out what file registers it, which is usually an .ocx or an .dll in the same folder path of your third party app, and then register these file(s). Here is the command to register a file: regsvr32 /i "c:\windows\system32\scrrun.dll"</p>
<p>Even if you find the progID value in the registry and it references a file that is present on your system, you may still want to try re-registering the file. I have found that sometimes the registration got broken somehow somewhere and it was easier to re-register the files then it was to fix the issue.</p>
http://stackoverflow.com/questions/656934/activex-component-cant-create-object/660081#6600813Answer by GordyII for ActiveX component can't create objectGordyII2009-03-18T21:00:50Z2009-03-18T21:00:50Z<p>It turns out to get this application working under VBScript, I had to do two things.</p>
<p>1) Run RegAsm.exe to register the dlls.<br>
2) Run the C:\Windows\SysWOW64\cscript.exe to run my VBScript.</p>
<p>Thanks for all your help.</p>