Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We changed the function name “aaa” into bbb in vbexample.dll, and registered into VB application. After registering it is getting executed in my local PC. After that when I generated a build of that VB application and tested it in another PC, it is not working. The Message I get is: "ActiveX component can not create object".

share|improve this question

1 Answer

How is the COM object being instantiated on the other PC? If you rebuild the app on one PC and then move it to another PC afterward, it's likely that VB has built it with another IID, and the other computer doesn't recognize it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.