View Single Post
Old 10-08-2000, 10:08 AM   #2
mosquito
SQL nutcase
 
mosquito's Avatar
 
Join Date: Sep 2000
Location: Belgium
Posts: 1,136
Send a message via AIM to mosquito
use the msxml object. It's the same way you would do it with vb.

Code:
Set oXml = createobject("msxml.XMLDocument")
oXml.URL = FilePath
Set xRoot = oXml.root
This way the complete structure of the xml file is exposed.
mosquito is offline   Reply With Quote