I have googled for the last hour or so with no luck (I\'d like to think I\'m a great googler too!), so here I am.
I have an XML file that I\'m using for my programs sett
If you are familiar with datasets and datatables, this is an easy way to do it:
Dim DS As New DataSet DS.ReadXml("Data.xml")
DataSets can read any XML. I even use this to call rest-enabled XML services.