I find it much easier to use XElement and axis properties to read XML files compared to using XmlDocument.
Code:
    Dim xml = XElement.Load("c:\Settings.xml")
    Dim setting1 = xml...<Setting1>.Value
    MsgBox(setting1)