private void label21_Click(object sender, EventArgs e) { this.Hide(); customer_type customerType = new customer_type(); customerType.ShowDialog(); this.Close(); }
private void label21_Click(object sender, EventArgs e) { this.Hide(); // defined and passed the activity customer_type customerType = new customer_type(); customerType.ShowDialog(); this.Close(); }
private void pictureBox3_Click(object sender, EventArgs e) { this.Hide(); // pass activity customer_type customerType = new customer_type(); customerType.ShowDialog(); // close this.Close(); }