Selecting In MULTIPLE listboxes

tk.unlimited

Active member
Joined
Apr 2, 2005
Messages
27
Programming Experience
1-3
Hey All,

Im having trouble selecting data stored in listboxes.. I have 6 listboxes all with 'SALES' information and as there are many entries, is it possible when i click on ONE entry it selects all the other entries in the other listboxes in the same position?
E.g
Select entry in listbox position 5, then entry in next listbox in position 5 is highlighted and next listbox in position 5 is highlighted etc etc?
 
Whats that do??


Private
Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim i As Integer

For i = 1 To 12

ListBox1.Items.Add("Item " & i)

ListBox2.Items.Add("Item " & i)

ListBox3.Items.Add("Item " & i)

Next

End Sub

 
Back
Top