Display all items (in columsn) in list box on form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have built a form in a nine grid fashion and would like for the list boxes
in each section to display all of the data which is derived from a query.
Obviously, the short lists display without a problem, but how do you get the
data to display in columns within the list box on those with more data?
 
I have built a form in a nine grid fashion and would like for the list boxes
in each section to display all of the data which is derived from a query.
Obviously, the short lists display without a problem, but how do you get the
data to display in columns within the list box on those with more data?

You can't, not in a Listbox control. There's a scrollbar which lets
you see more rows.

What if your query returned 83312 rows? Quite possible, in general;
and more information than any screen - or any mind! - can hold.

John W. Vinson[MVP]
 
Back
Top