I know how to access data in an XML file by opening an ADO Recordset with adCmdFile, but what I would like to do is access the XML file directly.
I would like to be able to search for the value of an element, etc. Let's say I have an Employee root element, I want to find last name Jones.
I would like to be able to search for the value of an element, etc. Let's say I have an Employee root element, I want to find last name Jones.
Code:
<Employee>
<LastName>Smith</LastName>
<FirstName>John</FirstName>
</Employee>
<Employee>
<LastName>Jones</LastName>
<FirstName>Sam</FirstName>
</Employee>