I have a button and I have an invisible field. When I press the button I would like the button to make a combo visible and jump to that same combo
On the click event I tried:
cbo_method2.Visible = True
DoCmd.GoToControl "cbo_method2"
But since the combo is not visible when the button is pressed cbo_method2 is still invisible and not recognized. Is there a way to solve this without making cbo_method2 visible in the oncurrent event?
On the click event I tried:
cbo_method2.Visible = True
DoCmd.GoToControl "cbo_method2"
But since the combo is not visible when the button is pressed cbo_method2 is still invisible and not recognized. Is there a way to solve this without making cbo_method2 visible in the oncurrent event?