On a subform I have a textbox of which I would need to change control source property on click of a label on the parent form.I do not know how to do this as my trials resulted in errors.I have tried the following with no result:
Code:
1. Form_frmWOMAINMENU.[frmWOMAINSUBMENU].Form.[txtDate].Control.ControlSource = "Raised" 2. Forms("frmWOMAINMENU").[frmWOMAINSUBMENU].Form.[txtDate].ControlSource = "Raised" 3. Me.[frmWOMAINSUBMENU].Form.[txtDate].ControlSource = "Raised"
Comment