Hi, Ted.
Using a combo box to allow your user to pick from choices is an excellent
thing to do in Access. But, you pick your values from Rows in the combo box,
not columns. Each row is a unique value, and the Bound Column will be stored
in the Control Source underlying field.
From your posted properties, yours is a ValueList type of combo box in that
you've entered the values you'd like manually. However, your ColumnCount
property should be set to 1, the ListRows property set to 8, and the
ColumnWidths property should be set to say, 1.3". If you change this, your
box should display the values as different rows and allow you to pick any of
them.
With your Control Source set to nothing, you are not storing the chosen
value in any of the form's underlying fields. This may be as you wish. If
not, change the ControlSource to the name of the field in which you want the
chosen value stored.
One other note: a "Value List" type of combo box is fine for a small number
of static values, but understand that if the values will change somewhat over
time, or if you are storing the chosen values in the underlying table, it's
normally preferable to create a table with the values in it, each with its
unique numeric key. The table is easily edited for future changes, and you
store only the numeric key in the underlying table, rather than the entire
text.
Hope that helps.
Sprinks