Hey - thanks - that got me past one error now I have another....
Private Sub Command1_Click()
Dim objXML As New MSXML2.DOMDocument
Dim NodeList As MSXML2.IXMLDOMNode
Dim xNode As MSXML2.IXMLDOMNode
objXML.async = False
objXML.Load ("C:\Documents and Settings\Tom\Desktop\new xml test aop.xml")
Set NodeList = objXML.selectNodes("//ArrayOfCompetition/Competition/EventName")
For Each xNode In NodeList
Print xNode.Text
Next
End Sub
The error I now get is Type Mismatch on this line:
Set NodeList = objXML.selectNodes("//ArrayOfCompetition/Competition/EventName")
Here is a snippet of the xml from the beginning....
<?xml
version="1.0" encoding="utf-8" ?>
<CompetitionGuid>72a399f8-480c-4743-9c14-4357a77582ce</CompetitionGuid>
<Date>2014-06-26T09:00:00</Date>
<EventName>Southwest Corps Connection</EventName>
<GroupTypeID>4</GroupTypeID>
<IsCurrentSeason>true</IsCurrentSeason>
<Location>Mesa AZ</Location>
<OrgCompetitionID>0</OrgCompetitionID>
<RecapReleased>false</RecapReleased>
<SeasonGuid>348fac28-d10c-47e5-8753-802512df9904</SeasonGuid>
<SeasonName>2014</SeasonName>
</Competition>
<CompetitionGuid>20c36756-adf0-47f8-8edb-30db18b6dbb6</CompetitionGuid>
<Date>2014-06-25T09:00:00</Date>
<EventName>Drums on the Ohio</EventName>
<GroupTypeID>4</GroupTypeID>
<IsCurrentSeason>true</IsCurrentSeason>
<Location>Evansville IN</Location>
<OrgCompetitionID>0</OrgCompetitionID>
<RecapReleased>false</RecapReleased>
<SeasonGuid>348fac28-d10c-47e5-8753-802512df9904</SeasonGuid>
<SeasonName>2014</SeasonName>
</Competition>
........
Thoughts?
Tom