<?xml version="1.0"?>
<chimaera>
<servers>
<host ip="172.16.1.30">Chimaera</host>
<host ip="172.16.1.31">MySQL1</host>
<host ip="172.16.1.32">Ares</host>
</servers>
</chimaera>

How can I read the above xml file into a combobox with the server names?

While myXML.Read
If XmlNodeType.Element Then
If myXML.Name = "hosts" Then
myXML.MoveToAttribute("ip")
MsgBox(myXML.ReadAttributeValue)
End If
End If
End While

this is what i have but it won't work. i'm trying to read the attribute "IP"