XML DOM DOCUMENT - problems

webmasterbeta

New Member
I need to modify a Xml document, I have tried to modify throw of:Set xmlDoc = CreateObject("Msxml2.DOMDocument")xmlDoc.async = FalsexmlDoc.validateOnParse = FalsexmlDoc.Load ("hola.xml")elem = xmlDoc.documentElement.firstChildtext = elem.lastChild.firstChildtext.insertData 1, "something"I have been working in VB6 and when I have tried to insert some data, theapplication doesn't work. what can i do?Please
 
Back
Top