How do I get a specific tag from an entire XML file to add to a listbox?

netmatrix

New Member
My XML file looks like this:\[code\]<?xml version="1.0" encoding="utf-8" ?><Tabel> <Member> <Naam>Cruciatum</Naam> <Kills>1000</Kills> <Deaths>10</Deaths> <KD>100</KD> </Member></Tabel>\[/code\]When more nodes are added, how can I get the value in the \[code\]<Naam>\[/code\] tags to be added into a listbox?Note: there isn't a fixed amount of \[code\]<Member>\[/code\] nodes and they all have to have their \[code\]<Naam>\[/code\] elements added into the listbox.
 
Back
Top