how can you populate a combo box using XML..but using the nodeValue instead of just the nodeName? and when using nodeValue I dont understand the documentation....can anyone shed some light?

Usage

myXML .nodeValue

Description
Property; returns the node value of the XML object. If the XML object is a text node, the nodeType is 3, and the nodeValue is the text of the node. If the XML object is an XML element (node type is 1), it has a null nodeValue and is read-only.

So how do you use the value of the xml node?


thanks