Hi,
I have a main form ("frm_TimeParen t") and a subform ("frm_TimeChild ").
Issue: How do I refresh the combo box values in the subform once the contract has been selected in the main form?
Background:
The main form has a combo box ("cbo_Contract" ) which obtain data from a QUERY (
The subform has a combo box ("cbo_Activity" ) which obtains date from a QUERY (
I have a main form ("frm_TimeParen t") and a subform ("frm_TimeChild ").
Issue: How do I refresh the combo box values in the subform once the contract has been selected in the main form?
Background:
The main form has a combo box ("cbo_Contract" ) which obtain data from a QUERY (
SELECT [tbl_Contract].[Contract], [tbl_Contract].[Contract Description] FROM tbl_Contract; ) and has a control source ("Contract_i d). The subform has a combo box ("cbo_Activity" ) which obtains date from a QUERY (
SELECT Reference.Activ ity, Reference.Contr act FROM Reference WHERE (((Reference.Co ntract)=Forms![frm_TimeParent]!cboContract)); ) and has a control source ("Activity_i d")
Comment