I have some XML that looks similar to this:
<SolutionString>
<Solutions>
<Solution>
<ID>1</ID>
<Property>
<Name>DriverSheave</Name>
<Value>1VP34</Value>
</Property>
<Property>
<Name>DriverBushing</Name>
<Value>
</Value>
</Property>
<Property>
<Name>DrivenSheave</Name>
<Value>AK49</Value>
</Property>
<Property>
<Name>DrivenBushing</Name>
<Value>
</Value>
</Property>
</Solution>
<Solution>
<ID>2</ID>
For every ID number, the example above includes ID 1. I'd like to include all of its child elements into one line of a combobox.
To look similar to this
- DriverSheave = 1vp34, Driver Bushing = (nothing)/0, DrivenSheave = AK49,
- etc...
I have looked at Getting XML data into combobox, but it only shows how to get single items from XML into combo boxes.