I'm trying to refer to a control by a variable name. The control is located in a panel within a tab control.
I can refer to a control if it's on the parent form like this:
Me.Controls("TextBoxName").Text = "test text"
Is there an easy way of referring to any control regardless of where it is?
Failing that, how do I loop through all the controls to find it? - I'm not sure how to get a control that's on a tab.
Thanks!