public Form5() { InitializeComponent(); if (f3 == null) f3 = new Form3(); }
private void button10_Click(object sender, EventArgs e) { if (f3 == null) f3 = new Form3(); f3.fo = label4.Text; f3.Show(); n = 0; i = 0; arr_count = 0; count = 0; this.Hide(); }
private void button2_Click(object sender, EventArgs e) { if (radiobutton1 == true) { if (f4 == null) f4 = new Form4(); f4.fo = label4.Text; f4.Show(); this.Hide(); } else if (radiobutton2 == true) { if (f3 == null) f3 = new Form3(); f3.fo = label4.Text; f3.Show(); this.Hide(); } }