Listbox TopIndex

Olgun

Member
Joined
Sep 10, 2019
Messages
11
Programming Experience
Beginner
Hello everyone,
I am using some listboxes in my vb.net program but i need a solution like listbox topindex.
I learned that it is not available for some times.
I have many items in my list boxes and when i choosed any of them i want to see all corresponding items in each listbox easily...
Any suggestion please...
 
I found a solution like this, now i dont need TopIndex, thank you..
ListBox6.SelectedIndex = ListBox7.SelectedIndex
ListBox8.SelectedIndex = ListBox7.SelectedIndex
ListBox9.SelectedIndex = ListBox7.SelectedIndex
ListBox10.SelectedIndex = ListBox7.SelectedIndex
test1 = ListBox6.SelectedItem.Text
Response.Redirect("file1.aspx")
 
Back
Top