vote up 0 vote down star

how to hide or disable items in one combobox on the basis of selected item in another combobox in vb.net?

flag

3 Answers

vote up 0 vote down

i hv tried this.

combobox2_selectedindexchange()
if combobox2.selectedindex=0 then
 combobox1.items.add("apple")
 combobox1.items.add("mango")

elseif combobox2.selectedindex=1 then
 combobox1.items.add("grapes")
 combobox1.items.add("banana")

end if

it is adding the items on change of index.. but it is also displaying previously added items also.. wat to do???

link|flag
vote up 2 vote down

As gerrie said , you have to make a condition in the second combobox selected indexed changed event, like so :

Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
    If ComboBox1.SelectedValue = "my Value" Then
        ComboBox2.Visible = False
    End If
End Sub

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

ComboBox2.Items.Clear()

Or otherwise you put the values in a list like a Datatable and point the combobox datasource of that specific Datatable

link|flag
I think he wants the data inside Combobox2 to change. – Gerrie Schenck Feb 25 at 8:23
"she" wants... ;-) – Cerebrus Feb 25 at 8:53
i think u r nt getting my problem. situation is like this.. combobox1 combobox2 red apple blue mango green grapes yellow orange when i select a value from combobox2 only 2 values must be visible from box1,rest are not..how to do this.. – renu Feb 25 at 9:46
Changed my answer, hope it was you needed – Drahcir Feb 25 at 10:11
thanks..my problem has been solved.. i hv used the remove() method before adding any other item in each if case.. – renu Feb 25 at 10:38
vote up 2 vote down

Manipulate the datasource of the second combobox in the selected index changed event of the first one.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.