private bool Validar() { bool paso = true; errorProvider1.Clear(); if (string.IsNullOrWhiteSpace(IdNumericUpDown.Text)) { errorProvider1.SetError(IdNumericUpDown, "El campode del ID no puede estar vacio..."); IdNumericUpDown.Focus(); paso = false; } if (EstudianteTextBox.Text == "") { errorProvider1.SetError(EstudianteTextBox, "El campo nombre no puede estar vacio..."); EstudianteTextBox.Focus(); paso = false; } if (Convert.ToDecimal(LogradoTextBox.Text) < 0) { errorProvider1.SetError(LogradoTextBox, "el campo no puede tener valores menor que 0"); paso = false; } if (Convert.ToDecimal(ValorTextBox.Text) < 0) { errorProvider1.SetError(ValorTextBox, "el campo no puede tener valores menor que 0"); paso = false; } return(paso); }
private void Eliminarbutton_Click(object sender, EventArgs e) { repositorio = new RepositorioBase <Usuarios>(new Contexto()); int.TryParse(IdNumericUpDown.Text, out int id); if (!ExisteEnLaBaseDeDatos()) { MyerrorProvider.SetError(IdNumericUpDown, "No existe ese usuario"); IdNumericUpDown.Focus(); return; } if (repositorio.Eliminar(id)) { MessageBox.Show("Eliminado", "Exito", MessageBoxButtons.OK); Limpiar(); } else { MessageBox.Show("No se pudo eliminar ", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void EliminarButton_Click(object sender, EventArgs e) { MyErrorProvider.Clear(); int id; int.TryParse(IdNumericUpDown.Text, out id); RepositorioBase <Facturas> repositorio = new RepositorioBase <Facturas>(); Limpiar(); if (repositorio.Buscar(id) != null) { if (repositorio.Eliminar(id)) { MessageBox.Show("Eliminado", "Exito", MessageBoxButtons.OK, MessageBoxIcon.Information); } } else { MyErrorProvider.SetError(IdNumericUpDown, "No se puede eliminar un registro que no existe"); IdNumericUpDown.Focus(); } }