|
即错误提示为:Run-time error '429'
ActiveX component can't create object
跟系统组件有关,把系统组件全部再重新注册一遍,问题就应该迎刃而解,在开始菜单运行中输入CMD:
在DOS命令符状态下输入如下命令:
for %1 in (%windir%\system32\*.ocx) do regsvr32 /s %1
再运行:
for %1 in (%windir%\system32\*.dll) do regsvr32 /s %1
用这种方法也可以解决内存不能为read错误
呵呵,等上不到一分钟吧,系统组件重新注册完毕后,OK问题解决! |
|