ActiveX component can't create object
See Also
Using VBScript with Objects
The VBScript 5.5 runtime could not instantiate the object for you because the object's class is not registered in the system registry, or one or more of the associated dynamic-link libraries (DLLs) are not available. Alternately, a DLL required by the object may be unusable, either because it can't be found, or it is corrupted.To correct this error Make sure all associated DLLs are available. For example, the Data Access Object (DAO) requires supporting DLLs that vary among platforms. You may have to rerun the setup program for such an object. 
Internet Explorer may be trying to create an object for you, but you do not have the correct security permissions set in Internet Explorer. Reset the Internet Explorer security setting and try again.

解决方案 »

  1.   

    谢谢! 我刚才加入了一条alert Err.Description语句, 亦是报告 active 对象不能创建. 可是我的路径以及所有的对象注册都是好的. 在其他的机器上运行没有问题. 不知有谁碰到过这种现象?
      

  2.   

    我在 MSDN 中查到了这章:VBScript Run-time Errors有错误代码的介绍. 但仍无法确定我的错误出在什么地方.
      

  3.   

    根据 MSDN 提示: Internet Explorer may be trying to create an object for you, but you do not have the correct security permissions set in Internet Explorer. Reset the Internet Explorer security setting and try again.我重设了安全属性,仍不可用.
      

  4.   

    what object did you want to create?
      

  5.   

    安全设置不允许运行未签名的active x控件
      

  6.   

    to  yonghengdizhen(情已逝-只有梦还在) :我设了, 但没用.
      

  7.   

    ole查看程序,查看一下组件的依赖关系..
      

  8.   

    问题已经解决. 我将编译方式由 minisize 改为 minidepend就好了. 谢谢各位.