R
RickH
Dim xmlNodeListA, xmlNodeListB AS IXMLDOMNodeList
xmlNodeListA = thisDocument.DOM.selectNodes
("/dfs:myfields/dfs:dataFields/d:Offloaf_Request")
For Each xmlNodeA In xmlNodeListA
xmlNodeListB = xmlNodeA.childNodes
For Each xmlNodeB in xmlNodeListB
'read data--- works fine
Next
'Do calculations from read data in all xmlNodeListB
'Walk thru xmlNodeListB again to write data
For Each xmlNodeB in xmlNodeListB
'write data ---fails, says no instance of object
Next
Next
I can't seem to find the correct syntax for walkung thru the node a second
time..any ideas??
Tried everything I could think of..
xmlNodeListA = thisDocument.DOM.selectNodes
("/dfs:myfields/dfs:dataFields/d:Offloaf_Request")
For Each xmlNodeA In xmlNodeListA
xmlNodeListB = xmlNodeA.childNodes
For Each xmlNodeB in xmlNodeListB
'read data--- works fine
Next
'Do calculations from read data in all xmlNodeListB
'Walk thru xmlNodeListB again to write data
For Each xmlNodeB in xmlNodeListB
'write data ---fails, says no instance of object
Next
Next
I can't seem to find the correct syntax for walkung thru the node a second
time..any ideas??
Tried everything I could think of..