I'm in way over my head doing some XML stuff. I've got an XML file that I need to load. It's structure is:
INVOICE
CLAIM
CLAIM
CLAIM
A few of the CLAIM children(?) have a line like this:
<claim errorCode="CX" number="12345678">
I need to walk through the XML document and pull out the records that have an errorCode element(?), grab all the lines from that claim and store them in an array.
Anybody have a nice VB6 project that opens an XML file and traverses it pulling out the children or elements or attributes whatever they are called?
Many thanks in advance!

