I have few tabs and I need to way to access textboxes on them easily, I tried code below:
textBox1.Text = otherTab.textBox1.Text;
String textIneed =otherTab.textBox1.Text;
I did make the TextBox public but Visual Studio insists there is no reference to TextBox…Also the tabs are on the same form.
And all UI elements are declared on the same form, so simply address it as
this.TheTextBoxName.Text.