private void pictureBox3_Click(object sender, EventArgs e) { DialogResult resultado; Bloquear(); try { if (TxtIdentificacion.Text != "") { resultado = MessageBox.Show("Desea eliminar al usuario?", "Bibliosoft", MessageBoxButtons.OKCancel, MessageBoxIcon.Question); string dato; if (resultado == DialogResult.OK) { Libros.TipoIdentidad = TxtTipoIdenti.Text; Libros.TipoUsuario = TxtTipoUsu.Text; Libros.Nombre = TxtNombre.Text; Libros.Identificacion = TxtIdentificacion.Text; Libros.Apellido = TxtApellido.Text; dato = servicio.EliminarUsuario(Libros); limpiar(); MessageBox.Show(dato, "Bibliosoft", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { limpiar(); } TxtIdentificacion.Focus(); Eliminar.Visible = false; Editar.Visible = false; Guardar.Visible = true; } else { MessageBox.Show("Identificacion no encontrada"); } } catch (Exception error) { MessageBox.Show("Error " + error.Message.ToString()); } }
public bool ValidarPersona() { bool retorno = true; if (string.IsNullOrEmpty((TxtPrNombre.Text))) { errorP1.SetError(TxtPrNombre, "Debe ingresar el primer nombre."); TxtPrNombre.Focus(); retorno = false; } else { errorP1.SetError(TxtPrNombre, ""); } if (string.IsNullOrEmpty((TxtPrApellido.Text))) { errorP1.SetError(TxtPrApellido, "Debe ingresar el primer apellido."); TxtPrApellido.Focus(); retorno = false; } else { errorP1.SetError(TxtPrApellido, ""); } if (string.IsNullOrEmpty((TxtIdentificacion.Text))) { errorP1.SetError(TxtIdentificacion, "Debe ingresar la identificación."); TxtIdentificacion.Focus(); retorno = false; } else { errorP1.SetError(TxtIdentificacion, ""); } return(retorno); }
private bool ConsultarIdentificacion() { string identifi = ""; int idPersona = 0; bool retorno = true; Profesor pf = new Profesor(); pf.Persona.Identificacion = TxtIdentificacion.Text.Trim(); DataSet ds = CtrlProfesores.GetPersonaIdentificacion(pf); if (ds.Tables[0].Rows.Count > 0) { identifi = ds.Tables[0].Rows[0]["Identificacion"].ToString(); idPersona = Convert.ToInt32(ds.Tables[0].Rows[0]["Id"]); } if (Modo != "E") { if (TxtIdentificacion.Text.Trim() == identifi) { retorno = false; XtraMessageBox.Show("Ya existe una persona con esa identificación.", Resources.AppName, MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button2); TxtIdentificacion.Focus(); } } else { if (TxtIdentificacion.Text.Trim() == identifi && idPersona != Id) { retorno = false; XtraMessageBox.Show("Ya existe una persona con esa identificación.", Resources.AppName, MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button2); TxtIdentificacion.Focus(); } } return(retorno); }
protected void Func_ActualizarUsuario() { if (((((TxtNombres.Text == "") || (TxtApellidos.Text == "") || (TxtCorreo.Text == "") || (TxtDireccion.Text == "") || (TxtMovil.Text == ""))))) { MessageBox.Show("Debe diligenciar toda la informacion", "Validacion de informacion", MessageBoxButtons.OK, MessageBoxIcon.Warning); TxtIdentificacion.Focus(); } else { ClsUsuario ObjActualizarUsuario = new ClsUsuario(); ObjActualizarUsuario.id = TxtIdentificacion.Text; ObjActualizarUsuario.nombre = TxtNombres.Text; ObjActualizarUsuario.apellidos = TxtApellidos.Text; ObjActualizarUsuario.sexo = Convert.ToString(CbxSexo.SelectedValue); ObjActualizarUsuario.estado = Convert.ToString(CbxEstado.SelectedValue); ObjActualizarUsuario.direccion = TxtDireccion.Text; ObjActualizarUsuario.correo = TxtCorreo.Text; ObjActualizarUsuario.telefono = TxtTelefono.Text; ObjActualizarUsuario.movil = TxtMovil.Text; ObjActualizarUsuario.rol = LblRol.Text; ObjActualizarUsuario.Func_ActualizarUser(); MessageBox.Show("El usuario " + TxtNombres.Text + " ha sido actualizado exitosamente", "Validacion de informacion", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void RegistroUsuarios_Load(object sender, EventArgs e) { TxtIdentificacion.Focus(); Eliminar.Visible = false; Editar.Visible = false; }
private void FrmCuentas_Load(object sender, EventArgs e) { TxtIdentificacion.Focus(); }
private void BtnNuevo_Click(object sender, EventArgs e) { Func_LimpiarControles(); TxtIdentificacion.Focus(); }
private void BtnCancelar_Click(object sender, EventArgs e) { TxtIdentificacion.Clear(); TxtPassword.Clear(); }