I am creating a bunch of UserControls each in a tab in a TabControl. The problem I'm having is I need to access a value from the controls. I have no idea how to do this.
string q;
foreach (TabPage tp in tabControler.TabPages)
{
Filter f = tp.Controls.Find("Filter",true); //not working at all.
q += f.querry;
}