I've seen a lot of examples in the documentation and on this forum. But none seem to show XML that uses the "name=Joe" form. I can't form my query of the document to access this information.
Thanks so much for the prompt reply. I was beginning to think I had to wade into MSXML with the million line header file interface. What a joke. This works great and is very simple to use!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I've seen a lot of examples in the documentation and on this forum. But none seem to show XML that uses the "name=Joe" form. I can't form my query of the document to access this information.
an example might help:
how would I get the value of "ProjectType" from
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.10"
Name="DepMan"
ProjectGUID="{A71C106F-B6B0-43A7-B1F7-FCE21F00319C}"
Keyword="MFCProj">
</VisualStudioProject>
ProjectType is an attribute, so look up the Attribute() functions. I believe there's one for strings and one for integers.
That makes sense, and works as well. :-)
Thanks so much for the prompt reply. I was beginning to think I had to wade into MSXML with the million line header file interface. What a joke. This works great and is very simple to use!