Hi all,
I have a form "FormA" with 2 comboboxes - cboMunicipality and cboCity. The cboMunicipality on Event After Update hase Me.cboCity.Requery. The cboCity on Event Row Source on Build has 2 tables :
[Forms]![FormA]![cboMunicipality] - this is in my Criteria on tbl_Municipalities
When I try to use this form "FormA" as subform my cboCity not works and show my Enter Parameter Value ? Forms!FormA!cboMunicipality
What do I need to change to be able to after update the cboCity ?
I have a form "FormA" with 2 comboboxes - cboMunicipality and cboCity. The cboMunicipality on Event After Update hase Me.cboCity.Requery. The cboCity on Event Row Source on Build has 2 tables :
Code:
SELECT tbl_Cities.City, tbl_Municipalities.Municipality
FROM tbl_Municipalities INNER JOIN tbl_Cities ON tbl_Municipalities.MunicipalityID = tbl_Cities.MunicipalityID
WHERE (((tbl_Municipalities.Municipality)=[Forms]![FormA]![cboMunicipality]));
When I try to use this form "FormA" as subform my cboCity not works and show my Enter Parameter Value ? Forms!FormA!cboMunicipality
What do I need to change to be able to after update the cboCity ?