12-27-2009 07:28 AM
I am having troubles replacing xml child inside XML document (below). In order to modify the xml node value, do I really need to replace the child or there is a way to modify the xml node value ?
Solved! Go to Solution.
12-27-2009 10:02 AM
12-01-2011 06:44 AM
More importantly, you can't create an element using its full XPath. The Tag Name of an element is precisely the text inside the < and >, so you tried to create an element that looked like </TimerScript/Sch...> which is probably not what you wanted. I don't think it's legal XML either.
What you needed to do was to create an element with the Tag Name of Delay, then get a reference to /TimerScript/.../CAM60 , then tell CAM60 to add the new Delay element as a child.
I know this is long dead, but someone else may come across it sometime and wonder.
~Chris