Read/Write to XML File

  • Thread starter Thread starter Lou Civitella
  • Start date Start date
L

Lou Civitella

Using VB.Net how do I read an XML file and then update its values. What I
would like to do is load data from an XML file onto fields on my form. I
would then like to type in new values into these fields and then update the
values in the XML file.

Thanks in advance,
Lou

Here is the contents of the xml file:
<?xml version="1.0" encoding="utf-8" ?>
<Configuration>
<ZipCode>11729</ZipCode>
<RefreshRate>5000</RefreshRate>
</Configuration>
 
Back
Top