Marshall,
I looked at the help for the Column Property and don't see how it applies to
multiple list box selections.
God Bless,
Mark
> >Iterating through a listbox, I need to address the columns of the list and
> >put them into a table. Is this possible? The expression
> >ctlList.ItemData(varItem) will give me Column(0), where I need other column
> >data as well.
>
> Mark, check out the .Column property
Douglas J. Steele - 16 Dec 2005 21:08 GMT
You should be able to use something along the lines of:
Sub BoundData()
Dim frm As Form, ctl As Control
Dim varItm As Variant
Set frm = Forms!Contacts
Set ctl = frm!Names
For Each varItm In ctl.ItemsSelected
Debug.Print ctl.Column(0, varItm)
Debug.Print ctl.Column(1, varItm)
Debug.Print ctl.Column(2, varItm)
Next varItm
End Sub

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> Marshall,
>
[quoted text clipped - 14 lines]
>>
>> Mark, check out the .Column property
Mark A. Sam - 16 Dec 2005 23:12 GMT
Thank you Doug.
> You should be able to use something along the lines of:
>
[quoted text clipped - 29 lines]
> >>
> >> Mark, check out the .Column property