Listbox Question

  • Thread starter Thread starter Derek Hart
  • Start date Start date
D

Derek Hart

I want to fill a listbox with items in a continuous form. Each row has
different data. I thought about storing the data in the table in the form of
a value list, such as:

"John Smith";"123 Main Street"
"Doris Smith";"7725 Lorne Street"

I could hardcode the listbox to have 2 columns and size it properly. But
this does not seem to work. I cannot name a Value List for a listbox, and
set the row source to be bound to a table field.

Any ideas?

Derek
 
if you want to use a table as the RowSource of a listbox control, set the
control's RowSourceType property to Table/Query (just as you would in a
combo box control).

hth
 

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