I try to replace a destination XML node with a source XML node:
I tried: destination.childnodes(0).nodetypedvalue=source.childnodes(0).nodetypedvalue
That did work, but the formatting in the XML document changed. Everything is in one line.
Is there a way to replace one node with another one and keeping the formatting?
Thank you.