friends i have a textbox and when i write a name in it and and press on save button it should save in xml file.
and after that when i again load the form that saved value should be retrieved in combobox.
please help me.....
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Oct 30, 2014, 6:53 AM
raju patilPosted Oct 31, 2014, 5:57 AM
raju patilPosted Oct 30, 2014, 5:16 AM
please help.......
Shweta LodhaPosted Oct 30, 2014, 3:41 AM
http://www.codeproject.com/Articles/6233/Populating-a-drop-down-control-from-an-XML-file
Shweta LodhaPosted Oct 30, 2014, 3:39 AM
XDocument doc =
new XDocument(
new XElement("ParentNode",
new XElement("Value", txtBox.text)
)
)
);