Quote Originally Posted by wqweto View Post
Try this:

thinBasic Code:
  1. '-- in Else
  2.         Dim oRow As IXMLDOMNode
  3.         Dim oColumn As IXMLDOMNode
  4.         Dim sRow As String
  5.         For Each oRow In doc.selectNodes("//Rows/Row")
  6.             sRow = vbNullString
  7.             For Each oColumn In oRow.selectNodes("Columns/Column")
  8.                 sRow = sRow & oColumn.selectSingleNode("Name").Text & "=" & oColumn.selectSingleNode("Value").Text & vbCrLf
  9.             Next
  10.             MsgBox "sRow=" & sRow, vbExclamation
  11.         Next
cheers,
</wqw>
Perfect! Thanks to all of you for your help with this!