Hi,
I have managed to open an xml file and read values from a xml file using XMLDOM. But how do I change text values in a xml node?
I tried something like:
XMLNode := XMLDOM.selectSingleNode('nfeProc/NFe');
xmlnode.text := 'new text';
But this does not work.
0
Comments
Found a solution to my own problem.
Just have to call xmldom.save('c:\tmp.xml');
to save the changes.