The code I'm trying to use is this.
Dim oNode
Set oNode = XmlDoc.SelectSingleNode("/Record/CelloXml/Integration/Case/Hearing/Court/NodeID")
Dim iIndex
Set iIndex = (CInt((oNode.Text).substring(0,1))) - 1
I want to use iIndexto decide that the element in the arraylist is returning to the parent application.
The error I am currently getting is that I need a text object inside oNode.Text
What am I doing wrong here?
source
share