Combo box problem not fixed by hotfix

A

aardvick

Seems like my problem should have been fixed by the hotfix for Office2003
SP3, but not so for me : (
Row source for my combo box is a query from a single table. There are 7
columns, but only the first 2 columns are visible (width > 0"). The bound
column property is set to 2. But that's where the problem lies. It doesn't
matter WHAT number I enter for the bound column property - what I get is the
column 1 value everytime.
Please tell me I'm overlooking something simple?
Or maybe installed the hotfix incorrectly? Sounds like it works for
everyone else...
TIA,
-Vicki
 
A

aardvick

I forgot to mention that my row source query has 7 columns because I'm using
those other values to populate fields on my form. THAT part is working out
fine.

e.g. Me.txt_Species.value = Me.cbo_StudyNo.Column(3)

The problem is specifically that the combo box first displays nothing at all
(even thought there IS a value in that field) and then when I select a value
from the drop-down list, it displays the value from the wrong column (always
column 1 no matter what I set the bound column value to).

Frustrating! And I thought the hotfix was supposed to address this very
issue! For now I'm just going to rewrite my query to put the value I want
bound in the first column. I'll let you know how that works...
 
D

Douglas J. Steele

As far as I'm aware, the hotfix addresses the issue that nothing would
display in the drop-down list (although it would be apparently that there
was data associated with it). I've never heard of an issue associated with
the wrong value being displayed or selected.
 
J

John Spencer

A combobox always displays the FIRST VISIBLE column when the combobox does not
have the focus. It always has for me. The bound column does NOT change which
column is the first visible column.

If you want the bound column to display, then make it the first column.

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

aardvick

Ahhh... That's what I was missing.
In that case the hotfix DID fix my combo box problems.
I just had additional *brain* problems that needed fixing : )
Thanks John!
-Vicki
 

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

Top