Loop through Listbox

  • Thread starter Thread starter Boss
  • Start date Start date
B

Boss

Hi,

Below code passes the row number and not the value seletced... help me solve
this... Thx!

For Each var4Item In me.list10.ItemsSelected
Msgbox(var4Item)
Next var4Item
End Sub

Thanks!
Boss
 
Msgbox me.list10.Column(0,var4Item)

Change the 0 to whatever column number the text you require from the listbox
is in.
 
Thank you guys...

no help me small or big... because big thing was one day small... Thx!

Boss
 
Back
Top