Link to home
Start Free TrialLog in
Avatar of sherrick123
sherrick123

asked on

Looping through XML Data

Hello XML'ers
Got a question today.  I have an XML File that i am writing a vba application to manipulate.  I am having difficulty traversing the childnodes.
Here is the xml AND THE VBA.
Thanks Ahead of time,
Dim myXML As New MSXML2.DOMDocument
    Dim myXElem As MSXML2.IXMLDOMElement
    Dim myXRecord As MSXML2.IXMLDOMElement
    Dim myXField As MSXML2.IXMLDOMElement
    Dim myXEntry As MSXML2.IXMLDOMEntity
    Dim oElSta() As String
   
   
    myXML.async = False
    myXML.validateOnParse = False
    myXML.Load ("W:\Bridge Inspection\Special Inspection - Drawings\UW - Drawings\Bridge_Scour.xml")
   
    Set myXElem = myXML.documentElement
    For Each myXRecord In myXElem.childNodes
        Debug.Print "========SOMETHING======"
        Debug.Print "BaseName " & myXElem.baseName  'Bridge_Scour
        Debug.Print "Structure Name " & myXRecord.Attributes(0).nodeValue
        For Each myXField In myXRecord.childNodes
            Debug.Print "Year " & myXField.Attributes(0).nodeValue
            'Debug.Print myXField.baseName & "---" & myXField.Text
            'Debug.Print "Stations and Elevations " & myXField.Text
'            Debug.Print myXField.childNodes(0).baseName 'Survey
'            Debug.Print myXField.childNodes(0).childNodes(0).firstChild.baseName 'Station Text
'            Debug.Print myXField.childNodes(0).childNodes(0).lastChild.baseName  'Elevation
            oElSta = Split(myXField.Text, " ")
            'Loop through the stations and elevations of the years
            For i = 0 To myXField.childNodes.Length
                Debug.Print myXField.childNodes(0).childNodes(0).firstChild.baseName & " " & myXField.childNodes(0).firstChild.childNodes(i).Text 'Station Te
                Debug.Print myXField.childNodes(0).childNodes(0).lastChild.baseName & " " & myXField.childNodes(0).firstChild.childNodes(1).Text 'Elevation
            Next
           
'            For i = 0 To UBound(oElSta)
'                Debug.Print oElSta(i)
'            Next
        Next
       
    Next
End Sub


I WANT TO LOOP THROUGH THE STATION AND ELEVATION EACH AT THEIR OWN LINE


<?xml version="1.0"?>
<!DOCTYPE Bridge_Scour SYSTEM "Bridge_Scour.dtd">
<Bridge_Scour>
     <Structure Name = "uw1.dgn">
          <Surveys year="2000">
                <Survey>
                    <Entry><Station>0.1</Station> <Elevation>123.45</Elevation></Entry>
                    <Entry><Station>0.2</Station> <Elevation>123.46</Elevation></Entry>
               </Survey>
          </Surveys>
          <Surveys year="2001">
                <Survey>
                    <Entry><Station>0.3</Station> <Elevation>123.47</Elevation></Entry>
                    <Entry><Station>0.4</Station> <Elevation>123.48</Elevation></Entry>
               </Survey>
          </Surveys>
     </Structure>
     <Structure Name = "uw2.dgn">
          <Surveys year="2001">
                <Survey>
                    <Entry><Station>0.5</Station> <Elevation>123.49</Elevation></Entry>
                    <Entry><Station>0.6</Station> <Elevation>123.50</Elevation></Entry>
               </Survey>
          </Surveys>
     </Structure>
</Bridge_Scour>
Avatar of Carl Tawn
Carl Tawn
Flag of United Kingdom of Great Britain and Northern Ireland image

My, thats a tough bit of reading :o)

What output are you wanting ? Its probably easier, and cleaner, to use the SelectNodes and SelectSingleNode methods to retrieve the data you want rather than trying to traverse nested childNodes collections.
Is space allowed between name an value

<Structure Name = "uw1.dgn">

try to

<Structure Name="uw1.dgn">

Appart from that the data looks ok.
Avatar of sherrick123
sherrick123

ASKER

I want the Station and Elevation data
I mean't more along the lines of what data do you need from the overall document. You have a lot of Debug statements so I was wondering if you were just outputting them because you could, or if you actually need them all.
okay,  sorry about that.
What i am really needing is that for a particular year for a particular structure i want the station and elevation data.
its a one to many relationship.  for One Structure their will be Many Years and for Each Year their of corse be many Station and Elevations.

So in the end I want to populate a list box of Structures.
The user Pics a structure Then a list box will be populated with the Years
The User then Pics the years and Then a datagrid will be populated with the
Station and elevation.  

This is my first time with XML and I am just figuring the Nodes and ChildNodes and the navigation of the XML file

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Carl Tawn
Carl Tawn
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
oh now that was alot easier than what i was trying to do.  I think i will be able to incorporate some of my code into yours and have everything work just fine.

Thanks so much