Morning Guys.. Have a Monday Morning Blank out here!
I have the following Debug code setup:
//XML Load of Document. This loads the XML Document and the value of a Single Node then inputs this to a text box//
XmlDocument doc = new XmlDocument();
doc.Load("C:\\twDB.xml");
XmlNode node = doc.SelectSingleNode("/DataBases/DataBase/Connection");
this.textBox1.Text = node.InnerText;
Currently shows the path of XML in text box for Debugging.
However - How do I show that same information in form2.cs textbox1 ?
Minds gone blank.. need more coffee.
Regards
Mark.