private void button2_Click(object sender, EventArgs e) { List_Members ns2 = new List_Members(this, null, null); ns2.Show(); // this.Hide(); }
private void button2_Click(object sender, EventArgs e) { List_Members ns2 = new List_Members(null, null, this); // these constructors let the created object know what opened them ns2.Show(); // this is only done like this in case I want the new objects to display }
private void button2_Click(object sender, EventArgs e) { List_Members ns2 = new List_Members(null, this, null); // these constructors let the created object know what opened them ns2.Show(); // this is only done like this in case I want the new objects to display } // slightly differently depending on who's accessing them.