Example #1
0
        private void btnRegEAtras_Click(object sender, EventArgs e)
        {
            VistaPrincipal objFromOpciones = new VistaPrincipal();

            objFromOpciones.Visible = true;
            //No mostrar la venta principal
            Visible = false;
        }
Example #2
0
        private void btnCerrarSesion_Click(object sender, EventArgs e)
        {
            MessageBox.Show("Esta seguro que quiere cerrar sesion ", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Information);
            Form objFromCodeudor = new VistaPrincipal();

            //Visible la ventana de Registro
            objFromCodeudor.Visible = true;
            //No mostrar la venta principal
            Visible = false;
        }