Referring to column data in multi-select list box

  • Thread starter Thread starter BRUNO
  • Start date Start date
B

BRUNO

How can a refer to specific column data in a multi-select
list box? I know to use the syntax:

lstMyListBox.Column(n)

in a single-select list box, but how do I do this in a
multi-select? Any help is greatly appreciated.

BRUNO
(e-mail address removed)
 
You can use the Column property to refer to a specific column, or column and
*row* combination, in a multiple-column combo box or list box.

....
Forms!Contacts!Customers.Column(1, 4)

--

peter walker MVP

Please post replies to the news group so everyone can benefit.
www.papwalker.com
 
Back
Top