BoundColumn doesn't control what displays in the combo, it controls what
gets stored in the underlying field. Bound Column is 1 based, so your
setting of 2 should store Province.
The left-most visible field is what will display. This is controled by your
query and ColumnWidths. Since Country is the first visible field, that is
what is displaying.
>If I change the column count to 1, I get the same thing.
Per Help: "The Bound column can't be set to a value larger than the setting
of the ColumnCount property."
2 possible solutions:
1) Switch the order of Country and Province in your SELECT:
SELECT [Province Name], [Country Name], etc..(leave the ORDER BY as is)
Change BoundColumn to 1
2) Consider something like this:
SELECT [Country Name], [Province Name], [Country Name] & " " & [Province
Name] AS CountryProvince, FROM [Countries and Provinces] ORDER BY
[Country Name], [Province Name];
ColumnCount: 3
BoundColumn: 2
ColumnWidths: 0;0;1
You display the Country & Province combination, but you only store Province.
HTH,

Signature
George Nicholson
Remove 'Junk' from return address.
> I've got a combo box on a form that has two columns, "Country" and
> "Province". The combo box data source is a query that references both
[quoted text clipped - 34 lines]
>
> Thanks Larry