firefly2k8
Registered User.
- Local time
- Yesterday, 19:10
- Joined
- Nov 18, 2010
- Messages
- 48
Having a nightmare with this combo box.
Spent ages surfing the web for solutions but nothing working.
I have a form. I have set the record source of the form to the query below which i built to fill my combo box.
I have set the record source property of the combo box to this query too.
Bound column is 1. (ie should be first column)
I have set the control source property of the combo box to "Unique Project ID" which is an autonumber field from the query.
Populates combo with all the data i want, but wont let me select anything!
It is fair to say I don't completely get the point of bound column, record source, control source, row source.
it should be this hard to make a drop down!!
Spent ages surfing the web for solutions but nothing working.
I have a form. I have set the record source of the form to the query below which i built to fill my combo box.
I have set the record source property of the combo box to this query too.
Bound column is 1. (ie should be first column)
I have set the control source property of the combo box to "Unique Project ID" which is an autonumber field from the query.
Populates combo with all the data i want, but wont let me select anything!
It is fair to say I don't completely get the point of bound column, record source, control source, row source.
it should be this hard to make a drop down!!
Code:
SELECT [SE11 Project Directory].[Unique Project ID], [SE11 Project Directory].[Project Date], [SE11 Project Directory].[Base Currency]
FROM [SE11 Project Directory];