Exemplo n.º 1
0
        private void btnvolver_Click(object sender, EventArgs e)
        {
            ventana2 volver = new ventana2();

            this.Hide();
            volver.Show();
        }
Exemplo n.º 2
0
        private void btniniciar_Click(object sender, EventArgs e)
        {
            if (txtid.Text == "1" && txtcon.Text == "1")
            {
                //MessageBox.Show("ha ingresado");

                this.Hide();

                ventana2 nuevaventana = new ventana2();
                nuevaventana.Show();
            }
            else
            {
                MessageBox.Show("datos incorrecto");

                txtid.Text  = "";
                txtcon.Text = "";

                txtid.Focus();
            }
        }