M
MattM
According to the documentation on MSDN this method is defined as:
NewFromSolutionWithData(ByVal varXMLData As Variant, ByVal varSolutionURI As
Variant, [ByVal dwBehavior As Long = 1]) As XDocument
and here's the details on the first parameter:
varXMLData Required Variant. Provides the XML data to be used as a
template for the form. Can be a string that specifies the Uniform Resource
Identifier (URI) of an XML document, or an XMLDOMNode that contains the XML
to be used as the XML document (template).
I'm not sure what the possible values are for the first parameter. I
understand it can point to an XML document via URI but the XMLDOMNode is
unfamilar. I've tried to search for the definition of this object but the
closest quote I can find is that:
"The DOMDocument object itself is an XMLDOMNode object".
Can someone explain exactly what is an XMLDOMNode or what this first
parameter can be? The closest match I've found is the return value of
documentElement method for the DOMDocument50 object
(DOMDocument50.documentElement). I'd like to know all the possible objects
and not just guess.
NewFromSolutionWithData(ByVal varXMLData As Variant, ByVal varSolutionURI As
Variant, [ByVal dwBehavior As Long = 1]) As XDocument
and here's the details on the first parameter:
varXMLData Required Variant. Provides the XML data to be used as a
template for the form. Can be a string that specifies the Uniform Resource
Identifier (URI) of an XML document, or an XMLDOMNode that contains the XML
to be used as the XML document (template).
I'm not sure what the possible values are for the first parameter. I
understand it can point to an XML document via URI but the XMLDOMNode is
unfamilar. I've tried to search for the definition of this object but the
closest quote I can find is that:
"The DOMDocument object itself is an XMLDOMNode object".
Can someone explain exactly what is an XMLDOMNode or what this first
parameter can be? The closest match I've found is the return value of
documentElement method for the DOMDocument50 object
(DOMDocument50.documentElement). I'd like to know all the possible objects
and not just guess.