Exemplo n.º 1
0
        private void label21_Click(object sender, EventArgs e)
        {
            this.Hide();

            customer_type customerType = new customer_type();

            customerType.ShowDialog();
            this.Close();
        }
Exemplo n.º 2
0
        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();
        }
Exemplo n.º 3
0
        private void pictureBox3_Click(object sender, EventArgs e)
        {
            this.Hide();

            // pass activity
            customer_type customerType = new customer_type();

            customerType.ShowDialog();

            // close
            this.Close();
        }