Unable to select last entry in a combo box

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

Guest

Hello,

I have encountered a strange problem with a combo box. It has a query for a
row source. I am able to click on every row in the combo box no problem but
if I click on the last row the last row value is not being displayed in the
combo box when the drop down list closes. Instead the next to the last value
is being displayed. I am stumped....any ideas?

Thanks very much,
Doug
 
1) How many entries are in the drop down list? You may be exceeding the
limit (64K), although I wouldn't expect the item to show either.

2) The control may be corrupted, try a new combo box and see if that works.

3) The bound field isn't visible in the drop down and the next to the last
and last items have the same value in the bound field.
 
Thanks Wayne.

Your idea about bound columns got me thinking. I have made several changes
over time to the underlying query....turned out to be a simple matter that my
bound column had shifted positions in the query results but I had not updated
the bound column value in the combo box properties.

Doug
 
Back
Top