Hi, I have a combox box (selStatus) with the following values:
Yes
No
Pending
This combo box appears on a form which uses a query as it's record source. Here is my query:
SELECT [course].[course_name], [candidate_course].[status] AS status, [candidate_course].[year], [candidate_course].[quarter], [candidate_course].[file_no]
FROM course LEFT JOIN candidate_course ON [course].[course_id]=[candidate_course].[course_id]
WHERE ((([course].[set])="1") And (([course].[target])<>'cfsm') And (([course].[active])=-1) And (([course].[mandatory])=0));
When I run the query, I can change the value of the combo box and the value is stored in the candidate_course table. But when I use my form (with the combo boxes control source set to status, I cannot change the value.
For example, the current value is set to "No", I want to change it to "Yes". I click on the combo box, the list of values drops down, I click on "Yes", and nothing happens.
Please help!
Yes
No
Pending
This combo box appears on a form which uses a query as it's record source. Here is my query:
SELECT [course].[course_name], [candidate_course].[status] AS status, [candidate_course].[year], [candidate_course].[quarter], [candidate_course].[file_no]
FROM course LEFT JOIN candidate_course ON [course].[course_id]=[candidate_course].[course_id]
WHERE ((([course].[set])="1") And (([course].[target])<>'cfsm') And (([course].[active])=-1) And (([course].[mandatory])=0));
When I run the query, I can change the value of the combo box and the value is stored in the candidate_course table. But when I use my form (with the combo boxes control source set to status, I cannot change the value.
For example, the current value is set to "No", I want to change it to "Yes". I click on the combo box, the list of values drops down, I click on "Yes", and nothing happens.
Please help!