View Single Post
  #2  
Old March 28th, 2010, 04:52 PM posted to microsoft.public.access.gettingstarted
John Spencer
external usenet poster
 
Posts: 7,815
Default One listbox works but the others don't

You have a conflict in your settings.
Bound Column: 2
Column Count: 1
Column Widths: 0";1"

If your bound column is column 2 then you need at least two columns in column
count. This could cause problems.

How many columns in the row source? You should match the column count to the
number of columns in the row source.

John Spencer
Access MVP 2002-2005, 2007-2010
The Hilltop Institute
University of Maryland Baltimore County

forest8 wrote:
Hi there

I have created a listbox called LB_Actions with the following:

Display Control: List Box
Row Source Type: Table/Query
Bound Column: 2
Column Count: 1
Column Widths: 0";1"
Allow Multiple Values: Yes
Allow Value List Edits: Yes


This one works fine. When I try to create a listbox called LB_NextSteps and
replicate the settings. It doesn't work., that is, I can't select any values
that appear in the list.

Another question: should I create the listbox first and then change the
settings or change the settings and then create the listbox. I can't find any
information on which should be completed first.

Thank you for your help.