not able to open VB project, getting error “C:\windows\system32\mscomctl.ocx” could not be loaded

后端 未结 8 1020
醉梦人生
醉梦人生 2021-01-23 09:18

I have a VB project was able to work without any issues, but now when i open the project i am getting the error with mscomctl.ocx. I have re-registered the ocx but still am not

8条回答
  •  孤街浪徒
    2021-01-23 09:47

    Try re-registering MSCOMCTL.OCX:

    1. download the file: http://www.ocxdump.com/ocxfiles/M/MSCOMCTL.OCX
    2. copy it in location c:\windows\system32\
    3. open command prompt and run this:

      cd c:\windows\system32
      regsvr32 MSCOMCTL.OCX
      

    Than try to run your application again.

提交回复
热议问题