0
I have found the solution on my issue.
the first mistake I made was using an XmlTextReader AND an XmlDocument for the same text that will collide against each other. No need to use both to read the Xml file.
Secondly, when creating a new XmlDocument don't instantiate your object into a string to call it in the XmlDocument. Just use the text of the object instead like this.
XmlDocument doc = new XmlDocument();
doc.LoadXml(richTextBox1.Text); //<==
XmlNodeList nodeList = doc.DocumentElement.SelectNodes("/AnXMLTestFile/");
0
hello Nilesh, Thanks for answering.
For security reasons I can't upload the whole file but the way the XML is created is the same for the whole file:
<Parenttag>
<childtag>
<childtag Attribute="X">
<subchildtag>
<childtag>
<childtag Attribute="X">
<Parenttag>
I say this because in my code I have other nodes that are not in the file that I'm adding but they do exist. ;-)
Thanks for your time.
0
can you please post your whole project code as a rar file along with the xml file you are working with?