Hello,
My xml looks as follows
<root>
<Points xyz="abc" >
<Point r="123" d="456" />
<point r="321" d="654" />
.......
<point r="999" d="999" />
</Points>
</root>
I'm using the command to find my namespace points and get the attribute xyz and change the attribute of contents :
Set VElem = XmlDoc.selectSingleNode("/ns:root/ns
oints")
Call VElem.setAttribute("xyz", "efg")
My problem is, i can look for the "point", but after that I have 30 time an "r". How do I search for each of these "r" to adapt the contents of this ?
Kind regards...
Periko...
My xml looks as follows
<root>
<Points xyz="abc" >
<Point r="123" d="456" />
<point r="321" d="654" />
.......
<point r="999" d="999" />
</Points>
</root>
I'm using the command to find my namespace points and get the attribute xyz and change the attribute of contents :
Set VElem = XmlDoc.selectSingleNode("/ns:root/ns
Call VElem.setAttribute("xyz", "efg")
My problem is, i can look for the "point", but after that I have 30 time an "r". How do I search for each of these "r" to adapt the contents of this ?
Kind regards...
Periko...