private bool validar() { bool paso = true; if (string.IsNullOrWhiteSpace(IdcategorianumericUpDown.Text)) { MyerrorProvider.SetError(IdcategorianumericUpDown, "El campo no debe estar vacio");; IdcategorianumericUpDown.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(IntroduccionTextBox.Text)) { MyerrorProvider.SetError(IntroduccionTextBox, "El Campo no debe estar vacio"); IntroduccionTextBox.Focus(); paso = false; } return(paso); }
private void Eliminarbutton_Click(object sender, EventArgs e) { repos = new RepositorioBase <Categoria>(new Contexto()); int.TryParse(IdcategorianumericUpDown.Text, out int id); if (!ExisteEnLaBaseDeDatos()) { MyerrorProvider.SetError(IdcategorianumericUpDown, "No Existe esa Categoria"); IdcategorianumericUpDown.Focus(); return; } if (repos.Eliminar(id)) { MessageBox.Show("Eliminado Coorectamente", "Exito", MessageBoxButtons.OK); Limpiar(); } else { MessageBox.Show("No se pudo eliminar ", "Fallo", MessageBoxButtons.OK, MessageBoxIcon.Error); } }