I am trying to get me the nodes via the enumerator.
problem is that the nodelist object is a late bound object.
So i was trying to use the interface pointer -4 to call the enumvariant interface.
Frankly i find the hard offsets a poor design.
Any luck i can keep using the late bound object and fetch me the enumerator anyway?
The enumerator is declared (early binding)
I seen code using Queryinterface but does not return an object:
problem is that the nodelist object is a late bound object.
So i was trying to use the interface pointer -4 to call the enumvariant interface.
Frankly i find the hard offsets a poor design.
Any luck i can keep using the late bound object and fetch me the enumerator anyway?
The enumerator is declared (early binding)
I seen code using Queryinterface but does not return an object:
Code:
Local oUnk As IUnknown Local pEnum As Dword oUnk = oNodeList oUnk.QueryInterface( $IID_IEnumVARIANT, pEnum ) To hr
Comment