VB.NET Array Help
sysparts(0, 0) = "BrandA"
sysparts(1, 0) = "BrandB"
sysparts(2, 0) = "BrandC"
sysparts(0, 1) = "Product1"
sysparts(1, 1) = "Product1"
sysparts(2, 1) = "Product1"
So I have the Brands in a combobox, and I need to get it so that when I select the brand from the combobox, it shows the relating products to that brand in seperate text boxes below.
Another issue I am having, is linking radio buttons to specific peices of the array. Say if I wanted to select Brand A on a radio button, and have those same Products show in the text boxes as well.
Sorry for the seemingly weird questions. I am just starting with this stuff and playing around with it. Thanks for your help.

