qqlfrfumyj
New Member
[*]I am using C# to do this.[*]OK, so this is what my XML file looks like... only there are SO much more AUCCars nodes.\[code\]<Recordset><AUCCars> <Web_Series>5 Series</Web_Series> <Body_Desc>Sedan</Body_Desc> <Model_Type>550i (E60)</Model_Type> <Model_Year>2006</Model_Year> <Ext_Colour>Alpine White III - Non-Metallic</Ext_Colour> <Int_Colour>Leather Dakota Black - Dakota Leather</Int_Colour> <Price>R 579000</Price> <Search_Price>579000</Search_Price> <Province>Gauteng</Province> <AucID>106288</AucID> <DealerID>45</DealerID> <DealerCode>29968</DealerCode> <DealerName>Lyndhurst Auto</DealerName> <Transmission>Automatic</Transmission> <AirCon>n/a</AirCon> <Radio>Yes</Radio> <PSteering>Yes</PSteering> <ABS>Yes</ABS> <Airbag>Yes</Airbag> <Sunroof>Yes</Sunroof> <Km>11500</Km> <Motorplan>Yes</Motorplan> <Warranty>N</Warranty> <BodyNo>6CR76051</BodyNo> <ModelOEM>NB52</ModelOEM> <ColourOEM>300</ColourOEM> <TrimOEM>LCSW</TrimOEM> <WheelsOEM></WheelsOEM> <Sold>N</Sold> <Notes> </Notes> <Moreoptions>Automatic Transmission with Steptronic Interior trim finishers, Fine-wood, Poplar Grain Brown, high-gloss Park Distance Control (PDC),front and rear</Moreoptions> <Picture>\Vehicle_Pictures\E60\LI\frontview_big_P0300.jpg</Picture> <PictureRear>\Vehicle_Pictures\E60\LI\rearview_big_P0300.jpg</PictureRear> <Interior>\Vehicle_Pictures\E60\LI\Interior\big_Fo_LCSW.jpg</Interior></AUCCars><AUCCars> <Web_Series>5 Series</Web_Series> <Body_Desc>Sedan</Body_Desc> <Model_Type>550i (E60)</Model_Type> <Model_Year>2006</Model_Year> <Ext_Colour>Black Sapphire - Metallic</Ext_Colour> <Int_Colour>Amethyst Black Exclusive Leather - Exclusive Leather</Int_Colour> <Price>R 529990</Price> <Search_Price>529990</Search_Price> <Province>KwaZulu Natal</Province> <AucID>111922</AucID> <DealerID>17</DealerID> <DealerCode>2485</DealerCode> <DealerName>Supertech</DealerName> <Transmission>Automatic</Transmission> <AirCon> Yes</AirCon> <Radio>Yes</Radio> <PSteering>Yes</PSteering> <ABS>Yes</ABS> <Airbag>Yes</Airbag> <Sunroof>n/a</Sunroof> <Km>7000</Km> <Motorplan>n/a</Motorplan> <Warranty>N</Warranty> <BodyNo>6CR75567</BodyNo> <ModelOEM>NB52</ModelOEM> <ColourOEM>475</ColourOEM> <TrimOEM>LDRH</TrimOEM> <WheelsOEM></WheelsOEM> <Sold>N</Sold> <Notes> </Notes> <Moreoptions>Automatic Transmission with Steptronic Electric Rear Screen Roller Sun Blind with manual Side Blinds Interior trim finishers, Fine-wood, Poplar Grain Brown, high-gloss High Beam Assist Head-up display (not with SA354)</Moreoptions> <Picture>\Vehicle_Pictures\E60\LI\frontview_big_P0475.jpg</Picture> <PictureRear>\Vehicle_Pictures\E60\LI\rearview_big_P0475.jpg</PictureRear> <Interior>\Vehicle_Pictures\E60\LI\Interior\big_Fo_LDRH.jpg</Interior> </AUCCars><Recordset>\[/code\][*]I need to fill combo boxes for Series, Model, and Year.[*]This i got right. When I compile the program, it loads all the series into the series [*]combo box.[*]When I selected a series, it automatically loads all the models into the models combo [*]box. When I selected a model, it automatically loads the years accordingly.[*]Now I need to display data according to selection.[*]eg. I selected "5 Series" for the series combo box, "550i (E60)" for the model combo 11. box, and "2006" for the year combo box.[*]How do I display all the data in that specific node according to my selection 13. in a list box?