|
-
Feb 9th, 2001, 05:29 AM
#1
Thread Starter
New Member
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
-
Feb 9th, 2001, 09:08 AM
#2
Fanatic Member
Cause
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?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|