I have 2 combobox here. cb1 and cb2.
I need to set like, when cb1.SelectedText = “aa”, the list of items in cb2 will be “1,2,3”
when cb1.SelectedText = “bb”, the list of items in cb2 will be “5,6,7”;
how can i do that?
I have 2 combobox here. cb1 and cb2. I need to set like, when
Share
You need to wire up the
SelectedIndexChangedEvent for cb1 –Handle Event & populate cb2 based on the selected text in cb1 as follows –
Hope it helps…