RickBeddoe
Programmer
Hello folks. I've also posted this in the XML forum.
Having a tough time trying to figure this one out.
I have a schema (xsd) file with namespaces declared in the root element as shown:
<xsd:schema xmlns:xsd=" xmlns:ci-com="
I would like to change the definition of this attribute from this:
xmlns:ci-com="
to this:
xmlns:ci-com="
I am doing this in VBA (with DOM interface) and everything I've tried kicks up an error that the attribute is read only. Here is the code:
newNode.nodeValue = newAttValue
where newNode is the root node (<xsd:schema...>) and newAttValue is a string representing the new vallue.
Any help would be appreciated.
Having a tough time trying to figure this one out.
I have a schema (xsd) file with namespaces declared in the root element as shown:
<xsd:schema xmlns:xsd=" xmlns:ci-com="
I would like to change the definition of this attribute from this:
xmlns:ci-com="
to this:
xmlns:ci-com="
I am doing this in VBA (with DOM interface) and everything I've tried kicks up an error that the attribute is read only. Here is the code:
newNode.nodeValue = newAttValue
where newNode is the root node (<xsd:schema...>) and newAttValue is a string representing the new vallue.
Any help would be appreciated.