Hi I'm new to XML file. I have the following format XML file and I only need to read the value for data name = "A2" in VC++.
How to read the value using the XML DOM methods without looping all the nodes?
My xml file is as follows:
<?xml version="1.0" encoding="utf-8" ?>
<root>
<xsd:schema id= ......>
...
...
</xsd:schema>
...
...<data name="A0">
<value>ja</value>
</data>
<data name="A1">
<value>display</value>
</data>
<data name="A2">
<value>Monitor</value>
</data>
...
...
</root>
Thank you