J
Jinee
Hi all,
I have this form which is a continuous form, and there are
2 combo boxes that related to each other.
one combo box is called : cboWorkArea
the second one is called: cboTasks
The cboTasks 's rowsource should be based on the value
selected in the cboWorkArea.
Now in Access XP, it is not valid to set the row source
for cboTask like:
SELECT tblTasks.TaskID, tblTasks.TaskDescr,
tblTasks.WorkArea
FROM tblTasks
WHERE (((tblTasks.WorkArea) = [forms] !
[frmTrainMaster].[cboWorkarea]));
However, If i set the rowsource in cboWorkArea's
afterUpdate() Event, there is no initial value displayed
in cboTasks.
The other problem is that since it is a continuous form,
when I update the value for cboWorkArea for one particular
record, all the records changed.
How can i get around with these 2 problems? Any
suggestions appreciated.
Cheers
Jinee
I have this form which is a continuous form, and there are
2 combo boxes that related to each other.
one combo box is called : cboWorkArea
the second one is called: cboTasks
The cboTasks 's rowsource should be based on the value
selected in the cboWorkArea.
Now in Access XP, it is not valid to set the row source
for cboTask like:
SELECT tblTasks.TaskID, tblTasks.TaskDescr,
tblTasks.WorkArea
FROM tblTasks
WHERE (((tblTasks.WorkArea) = [forms] !
[frmTrainMaster].[cboWorkarea]));
However, If i set the rowsource in cboWorkArea's
afterUpdate() Event, there is no initial value displayed
in cboTasks.
The other problem is that since it is a continuous form,
when I update the value for cboWorkArea for one particular
record, all the records changed.
How can i get around with these 2 problems? Any
suggestions appreciated.
Cheers
Jinee