MSXML6
-
i want to change MSXML2 in MSXML6. Dim xmlDoc As New MSXML2.DOMDocument6.0 Dim objNodeList As MSXML2.IXMLDOMNodeList6.0 Dim objNode As MSXML2.IXMLDOMNode6.0 the error: the type MSXML2.IXMLDOMNode is not defined. i must use MSXML6. thanks
-
i want to change MSXML2 in MSXML6. Dim xmlDoc As New MSXML2.DOMDocument6.0 Dim objNodeList As MSXML2.IXMLDOMNodeList6.0 Dim objNode As MSXML2.IXMLDOMNode6.0 the error: the type MSXML2.IXMLDOMNode is not defined. i must use MSXML6. thanks
Looks like a simple mistake in a definition. It should look this way:
Dim xmlDoc As New Msxml2.DOMDocument30
Dim currNode As IXMLDOMNode // interface, no MSXML2. at the startLook at the 2nd code snippet at: http://msdn2.microsoft.com/en-us/library/ms765513.aspx
------------------------- Don't worry, be happy :o)