J
j_gold
Hi,
I have a bound combobox that I'm having an issue with. The form's
recordsource is tied to an associative table that contains a storeID as well
as other info.
What I would like to have displayed is the name of the store in the
combobox. I am able to do this, but the wrong store name is coming up. It
appears to off by one.
e.g. Stores table
storeID storeName
1 Brentwood
2 Nancy's flowers
3 Tom's hardware
So if I have a person whose storeID is 2, what I should see in the combobox
is Nancy's flowers, but I see Tom's hardware instead.
The combobox is set up as follows:
Control Source: storeID
Row Source: SELECT storeID, storeName FROM Stores;
Row Source Type: Table/Query
Bound Column: 0
Column Count 2
Column Widths: 0";0.5"
How do I fix this?
Thanks,
J
I have a bound combobox that I'm having an issue with. The form's
recordsource is tied to an associative table that contains a storeID as well
as other info.
What I would like to have displayed is the name of the store in the
combobox. I am able to do this, but the wrong store name is coming up. It
appears to off by one.
e.g. Stores table
storeID storeName
1 Brentwood
2 Nancy's flowers
3 Tom's hardware
So if I have a person whose storeID is 2, what I should see in the combobox
is Nancy's flowers, but I see Tom's hardware instead.
The combobox is set up as follows:
Control Source: storeID
Row Source: SELECT storeID, storeName FROM Stores;
Row Source Type: Table/Query
Bound Column: 0
Column Count 2
Column Widths: 0";0.5"
How do I fix this?
Thanks,
J