Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

XML DOM VB6 1

Status
Not open for further replies.

ftpdoo

Programmer
Aug 9, 2001
202
GB

I've loaded my XML DOM object into memory:

Dim Dom As Object
Set Dom = CreateObject("MSXML.DomDocument")
Dom.async = False
Dom.Load "c:\Standalone.MetaData.xml"


Now how do I naviage through the DOM to fin d the node im looking for?

Thanks,
JD
 
You use the SelectSingleNode or SelectNodes method of the DocumentElement with an XPath search string. You'll need to read up on XPath to understand the syntax. There's a fairly good explanation in the MS XML help files.




Bob Boffin
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top