private void button3_Click(object sender, EventArgs e)
        {
            FrmAltaUsuario frmAltaUsuario = FrmAltaUsuario.GetInstancia();

            frmAltaUsuario.Set_Usuario(this.usuario, rol, true);
            frmAltaUsuario.lblUsuario.Text = "MODIFICAR USUARIO";
            frmAltaUsuario.ShowDialog();
        }
Exemplo n.º 2
0
        private void btnNuevo_Click(object sender, EventArgs e)
        {
            FrmAltaUsuario frm = new FrmAltaUsuario();

            frm.lbl_title.Text = "Agregar";
            frm.txtId.Visible  = false;
            frm.ShowDialog();
            Cargar_Usuarios();
        }
Exemplo n.º 3
0
 private void btnEditar_Click(object sender, EventArgs e)
 {
     if (tblUsuario.CurrentRow != null)
     {
         FrmAltaUsuario frm = new FrmAltaUsuario();
         frm.lbl_title.Text = "Modificar";
         // frm.txtId.Visible = true;
         // frm.txtId.Enabled = false;
         //frm.label1.Visible = true;
         frm.cmbRol.SelectedValue = tblUsuario.CurrentRow.Cells["rol_Codigo"].Value.ToString();
         frm.txtApellido.Text     = tblUsuario.CurrentRow.Cells["Apellido y Nombre"].Value.ToString();
         frm.txtUsuario.Text      = tblUsuario.CurrentRow.Cells["Usuario"].Value.ToString();
         frm.txtPass.Text         = tblUsuario.CurrentRow.Cells["Contraseña"].Value.ToString();
         frm.txtId.Text           = tblUsuario.CurrentRow.Cells["ID"].Value.ToString();
         frm.ShowDialog();
         Cargar_Usuarios();
     }
     else
     {
         MessageBox.Show("Debe seleccionar una fila", "Importante", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }