Selecting Several Paths
Hello:
I'm trying to find 2 paths in an XML file by using the | operator, the syntax for it is: //title | //price, when I put the 2 expressions together, I get different errors, below I included the 2 paths, what is the right way to build the complete predicate?
strNode = "//*[ID=""" & intCustomerID & """]"
strNode = "//*[Date=""" & DaterFilterClean.value & """]"
Set FilterNode = FilterDocXML.documentElement.selectSingleNode(strN ode)
When I use either string separatelly, it works fine!
Thanks for any help
|