Hi everybody,
i am newbie working on a small application using c# .net
problem:
i have two forms, form1 and fom2.
i have textbox in both forms.
when i click the submit button i want to get the value from a form1 textbox into the form2 textbox automatically.
code:
// in form2
private void textBox12_TextChanged(object sender, EventArgs e)
{
textBox12 = Admin_Calculator.textBox13.Text;
}
Error:
An object reference is required for the non-static field, method, or property 'WindowsFormsApplication3.Form1.textBox13'
OR
is there any other alternative way to acheive this..
please help me with issue