In VBA (with reference to MSXML2.DOMDocument60) I have two nodes:
Dim nodeFoo As MSXML2.IXMLDOMNode
Dim nodeBar As MSXML2.IXMLDOMNode
These nodes are assigned values, for what its worth nodeFoo is assigned via an xPath expression whereas nodeBar is assigned by looping through a set of nodes.
The challenge is to determine if: nodeBar = nodeFoo
(i.e. if it is the same actual node).
Searching google suggested it is possible using isSameNode but I'm unable to find an equivalent in MSXML2.