multi-column listbox columns

  • Thread starter Thread starter mcourter
  • Start date Start date
M

mcourter

how can i add data to columns in a multi column listbox.

..additem gets column(0,x)

but

..column(1,x) = "something"

doesn't work.

tia,
mcnewsxp
 
i solved it this way:

lstSelectVenues.rowsource = lstSelectVenues.rowsource &
cbxLookupVenue.Column(0, cbxFoodItems.ListIndex) & ";" &
cbxLookupVenue.Column(2, cbxFoodItems.ListIndex) & ";"

is there a better way?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top