예제 #1
0
        private void bunifuFlatButton1_Click(object sender, EventArgs e)
        {
            constructorrecuinterno upd = new constructorrecuinterno();

            if (txtpass.Text.Trim() == "" || txtpassveri.Text.Trim() == "")
            {
                MessageBox.Show("Campos vacios", "Por favor llene los campos", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }

            else
            {
                upd.pass = txtxcifrado.Text;

                upd.user = constructotlogin.usuario;
                funciones_recu_interno.pass(upd);
                Form frm = new YourOwnWorkshop();
                this.Hide();
                frm.Show();
            }
        }