H hazz Jul 19, 2005 #1 how do I parse this System.Xml.Xmlnode to get the value 'P' within the element <TIME_ZONE> ? Thank you, -hazz
how do I parse this System.Xml.Xmlnode to get the value 'P' within the element <TIME_ZONE> ? Thank you, -hazz
H hazz Jul 19, 2005 #2 Dim xmlNode As XmlNode = webservicexxx(argument to pass in) Dim doc As XmlDocument = New XmlDocument doc.LoadXml(xmlNode.InnerXml) Dim root As XmlNode = doc.FirstChild array(iCounter).property = (root("TIME_ZONE").InnerXml)
Dim xmlNode As XmlNode = webservicexxx(argument to pass in) Dim doc As XmlDocument = New XmlDocument doc.LoadXml(xmlNode.InnerXml) Dim root As XmlNode = doc.FirstChild array(iCounter).property = (root("TIME_ZONE").InnerXml)