Code Block
Dim vpend As Object, vprot As Object, vdados As Object
Dim vprotestos As String
For Each vpend In oResposta.context.childnodes
If vpend.basename = "Pendencias" Then
vprotestos = ""
For Each vprot In vpend.childnodes
If vprot.basename = "Protestos" Then
For Each vdados In vprot.childnodes
vprotestos = vprotestos & vdados.nodename & " : " & vdados.Text & vbCrLf
Next
End If
Next
End If
Next