Never worked with xml files before but have spent the evening watching youtube videos of parsing xml files using vb6:eek: Still stuck in a fog. I can download the xml file with no problem but the stripping out the values I am looking for isn't working. The following is code is what I am trying. I'm trying to put the value of the all home team into a textbox.When I execute the box just appears with no finformation. Any help in the right directtion to resolve would be appreciated
Public xmlReader As New DOMDocument
Private Sub Form_Load()
xmlReader.async = False
xmlReader.Load ("http://www.nfl.com/liveupdate/scorestrip/ss.xml")
xmlData.Text = xmlReader.selectSingleNode("//gms/hnn").Text
End Sub
Public xmlReader As New DOMDocument
Private Sub Form_Load()
xmlReader.async = False
xmlReader.Load ("http://www.nfl.com/liveupdate/scorestrip/ss.xml")
xmlData.Text = xmlReader.selectSingleNode("//gms/hnn").Text
End Sub