J
Jay
In a loop like so:
....
xmlr=cmd.executexmlreader()
xmlr.read()
do while xmlr.readstate <> xml.readstate.endoffile
loop
How do I return each individual element name and value from a document like
so:
<Customer>
<custno>2</custno>
<lname>Doe</lname>
<fname>John</fname>
<address>123 4th st.</address>
</customer>
So the result I need in the loop is (output to textbox):
custno: 2
lname: Doe
....
Thanks a lot.
....
xmlr=cmd.executexmlreader()
xmlr.read()
do while xmlr.readstate <> xml.readstate.endoffile
loop
How do I return each individual element name and value from a document like
so:
<Customer>
<custno>2</custno>
<lname>Doe</lname>
<fname>John</fname>
<address>123 4th st.</address>
</customer>
So the result I need in the loop is (output to textbox):
custno: 2
lname: Doe
....
Thanks a lot.