R
Ragnar Heil
This line works fine for me:
Set objDOMnode = objDom.selectSingleNode("//headline")
strHeadline = objDOMnode.Text
Now I want to get the value from this node:
<nitf>
- <head>
- <docdata>
- <date.issue norm="20020308T153751+0100" />
Why does these line not give the correct results?
Set objDOMnode = objDom.selectSingleNode("//date.issue norm")
strDate= objDOMnode.Text
Set objDOMnode = objDom.selectSingleNode("//headline")
strHeadline = objDOMnode.Text
Now I want to get the value from this node:
<nitf>
- <head>
- <docdata>
- <date.issue norm="20020308T153751+0100" />
Why does these line not give the correct results?
Set objDOMnode = objDom.selectSingleNode("//date.issue norm")
strDate= objDOMnode.Text