getting data in columns of multiselect listbox

  • Thread starter Thread starter Jesper F
  • Start date Start date
J

Jesper F

I know it's possible to retrieve the data from column 4 in a listbox with:
me.listname.colum(3).

However, if the listbox is a multiselect listbox - is it then possible
to get the data in the say 3rd column of on of the selected rows?
I seem only to be able to get the bound column of the data with:
listname.itemdata(varItm)
 
Hi,


Dim x As Variant

For each x in List0.ItemsSelected
Debug.Print Me.List0.Column( columnNumber, x )
Next x





Hoping it may help,
Vanderghast, Access MVP
 
Back
Top