I have a subform, BC_MainQry_subform, whose text labels I want to change, located on a Tabbed form. I change the label caption from another form (Admin_Form). I do this by reading a table with the text I want and referencing BC_MainQry_subform with a Call statement to a Public sub:
Call Change_LblTx("Language_EnglishToChinese", "English", Forms!BC_MainQry_subform)
This call works if I open only the subform, BC_MainQry_subform, but does not work if I open the Tabbed subform with BC_MainQry_subform. I have tried various ways to change Forms!BC_MainQry_subform to get his to work… but no luck. Anyone have an idea how to change my reference to the subform on the Tabbed form?