Hi. I got this Compile Error when i tried to compile my ActiveX DLL.
"Object module needs to implement "XXXX" for interface "YYYYYY"
What does that meen. and how do a solv it?
/Peter
Printable View
Hi. I got this Compile Error when i tried to compile my ActiveX DLL.
"Object module needs to implement "XXXX" for interface "YYYYYY"
What does that meen. and how do a solv it?
/Peter
In your ActiveX DLL you have a class module that should implement an interface but doesn't (or only partially does).
Every public member of your interface class must be implemented in each class that 'implements' it.
Judging by the tone of your post, I would say that either you have accidentally used the IMPLEMENTS keyword in one of your class modules or you are modifying an ActiveX DLL that someone else has written and failed to follow through the implications of your changes.
Do you understand the principles of interface inheritance?