how to hide or disable items in one combobox on the basis of selected item in another combobox in vb.net?
|
|
i hv tried this.
it is adding the items on change of index.. but it is also displaying previously added items also.. wat to do??? |
|||
|
|
|
|
As gerrie said , you have to make a condition in the second combobox selected indexed changed event, like so :
Where "my value" is a value I have in combobox1 Edit : The combobox keeps the values inserted unless you clear them. By using this line of code
Or otherwise you put the values in a list like a Datatable and point the combobox datasource of that specific Datatable |
||||||||||
|
|
|
Manipulate the datasource of the second combobox in the selected index changed event of the first one. |
||
|
|
