I have three listBoxes:
listBox1 have the following items: Fruit and vegetable.
listBox2 have the following items: Orange, Apple, cucumber and Tomato.
listBox3 have the following items: Red, Green, Yellow and Orange.
And i want to do like this, if i select Fruit in listBox1 i only want to show Orange and Apple in listBox2 and if i select Apple in listBox2 i want to show Red, Green and Yellow for example.
And if nothing is selected in listBox1 then listBox2 and 3 shall be empty and if nothing is selected in listBox2 then listBox3 shall be empty.
And is there any good way to make a select/deselect method?
Thanks!