blah blah blah is here! blah blah » Close

1
votes
1 answers

Datagrid Items to XML

Hi I have the following which reads the XMLNode attributes into a datagridview.. [code] XmlNodeList xnodes = xdoc.SelectNodes("//MyNode[@id and @name]"); foreach (XmlNode node in xnodes) { //datagrid has: col checkbox ...

Feedback