MSCOMCTL.ocx missing Windows 10

给你一囗甜甜゛ 提交于 2019-12-07 03:04:12

问题


I have some vb6 applications that i'm trying to move from Windows 7 to Windows 10. I have the .exe file, but when I tried to open it - it tells me that:

C:\App_1\MSCOMCTL.OCX could not be loaded - Continue Loading Project?

I searched for this file in C:\Windows\SysWow64 and found that the file is actually there as Type: ActiveX Control.

Any reason why I'm still getting the error?


回答1:


The ocx control should be in your Syswow64 (if 64 bit pc) folder and not in the app folder, and it needs to be registered manually (common vb6 problem in Win7, 8 ,10).

It seems you can see the file, but it might not be registered.

Run cmd in administrator mode, type regsvr32 C:\Windows\SysWOW64\MSCOMCTL.OCX.

This should solve the problem



来源:https://stackoverflow.com/questions/39251880/mscomctl-ocx-missing-windows-10

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!