01.
public
static
string
SetValueForText1 =
""
;
02.
public
static
string
SetValueForText2 =
""
;
03.
public
static
string
SetValueForText3 =
""
;
04.
05.
private
void
button1_Click(
object
sender, EventArgs e)
06.
{
07.
SetValueForText1 = textBox1.Text;
08.
SetValueForText2 = textBox2.Text;
09.
SetValueForText3 = textBox3.Text;
10.
11.
Form2 frm2 =
new
Form2();
12.
frm2.Show();
13.
}