ListBox Question

saidev

Active member
Joined
Dec 22, 2005
Messages
27
Programming Experience
1-3
Hi,
I have a list box and there are 1234 values in it. when i click on "1" then it should populate the data in 2nd list box based on the selection.
my 2nd listbox data is custom text. how can i do this in vb.net

Thanks,
 
SelectedIndexChanged event of the ListBox fires when you click an item. In Designer view doubleclick the ListBox and you are brought to this event handler in Code view where you can add code to fill the other ListBox.
 
Back
Top