Click here to Skip to main content
15,903,729 members

Comments by ICEFLOWER2 (Top 2 by date)

ICEFLOWER2 5-Aug-18 21:34pm View    
Deleted
' I Using this Method to add Element at XMLNodes
Dim El as XMLElement ' or XMLNode
With XDoc
EL = .CreateElement("NodeName")
with El
' Set Properties or ...
End With
.DocumentElement.Item("ParentNode").AppendChild(El)
End With
ICEFLOWER2 2-Aug-18 22:17pm View    
May be: document.DocumentElement.Item("channel").AppendChild(root)