I have loaded xml documents into vb by using the Document Object Model. Once loaded, you can create a list of all elements and loop though the data in the element. You need to reference msxml 2.0.
Dim objDom As MSXML.DOMDocument
Dim DocNodelist As MSXML.IXMLDOMNodeList
Dim iPos As Integer
Set...
I created a recordset from the following xml:
<xml xmlns:s='urn:schemas-microsoft-com:xml-data'
xmlns:dt='urn:schemas-microsoft-com:datatypes'
xmlns:rs='urn:schemas-microsoft-com:rowset'
xmlns:z='#RowsetSchema'>
<s:Schema id='RowsetSchema'>
<s:ElementType name='row' content='any'...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.