Hi Ievgen,
I have another question, i use the following classes to create XML from string.
System.Xml.XmlReaderSettings xmlReaderSettings;
System.IO.StringReader stringReader;
System.Xml.XmlReader xmlReader;
stringReader = new System.IO.StringReader(MyTable.XML);
xmlReaderSettings = new System.Xml.XmlReaderSettings();
document = new System.Xml.XmlDocument();
xmlReaderSettings.XmlResolver = resolver;
xmlReader = System.Xml.XmlReader::Create(stringReader, xmlReaderSettings);
document.Load(xmlReader);
If i want to pass or read the created XML to a form control, which one can i use?