What does “Method '~' of object '~' failed” at runtime mean?

后端 未结 8 1784
耶瑟儿~
耶瑟儿~ 2020-12-01 13:41

I\'m trying to run a legacy VB6 application on my desktop (it doesn\'t have a user interface, being a command-line app), and when I do, I get a message box saying

         


        
8条回答
  •  萌比男神i
    2020-12-01 14:30

    That can happen when supporting libraries (dlls or ocxs) are not registered properly or the versions of the installed libraries are different (and incompatible) with the version the app was compiled against originally.

    Make sure all dependent libraries are registered and the proper version.

    You may have to recompile the app to make it work with newer versions of the supporting libraries.

提交回复
热议问题