I have a COM DLL, in the typelib there are various interfaces defined, however VB only 'sees' those that are marked

default. I need to get the IXXXbEvents events.


from the typelib bit of the IDL file

coclass XXXObject

{

[default] interface IXXXObject;

interface IXXXa;

interface IXXXb;

interface IXXXc;

[default, source] interface IXXXaEvents;

[source] interface IXXXbEvents;

[source] interface IXXXcEvents;

};


Any ideas anyone?