vote up 0 vote down star

I want to create an IDispatch object that returns a value for every property. Ask it for "foo", it returns something. "bar" returns something. "faid1jhgi31jifj" as well.

Any pointers?

flag

0% accept rate

1 Answer

vote up 1 vote down

You need to override the GetIDsForNames methods with an appropriate implementation that returns a valid DISPID for any input parameters. Then override the Invoke method to ensure to return the correct value based on the dispatch id.

link|flag
Thanks, but what about the IDispatch::GetTypeInfo and ::GetTypeInfoCount functions? Don't I have to return a valid ITypeInfo there? – JoeF Aug 11 at 0:08
Never mind. I see that GetTypeInfoCount can optionally just return 0. – JoeF Aug 11 at 0:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.