6
Answers

IMultiVAlueConverter

RIck Mueller

RIck Mueller

14y
8.8k
1

Thanks to Raaj,
 The solution he provided me really help me to understand. To further my knowledge. How would I take the string and bind all the XML data to text boxes. So when  a user clicks on the ITem n the listbox it will populate  all 6 or so texboxes?
Thanks AGain
Regards,
Here is the Xml String
 
String xml =
"<Tables>"+"<Table>"+((XmlElement)value).InnerXml.ToString()+"</Table>" +"</Tables>";

XmlDocument XDoc =
new XmlDocument();
XDoc.LoadXml(xml);

Thanks

Answers (6)