Hi,
Thanks for the response.
The problem I have is that, whenever I use "selectSingleNode". I might get the error "Object or With Block not Set". This happens when my XML does not match the XPath.
So, this code,
Set node = domDoc.selectSingleNode("<<your XPATH>>")
may give out an error before I proceed to
If node Is Nothing Then
' its not there
Else
' it is there
Thanks,
Babloo
|