I want to replace this statement construct with an equivalent NamespaceManager invokecation.
XMLDoc.SetProperty "SelectionNamespaces", _
"xmlns:ABC='WWW.BLAH.COM' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'"
I tried declarePrefix followed by PushContext, but it threw an error regarding the use of the prefix.
Since the namespaces are declared in the document, why aren't they being recognized as soon as the document is open ?
Do I need to use getPrefixes for them to be recognized ?