private bool validar() { bool paso = true; if (string.IsNullOrWhiteSpace(LibroIdnumericUpDown.Text)) { MyerrorProvider.SetError(LibroIdnumericUpDown, "El campo no debe estar vacio"); LibroIdnumericUpDown.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(NombretextBox.Text)) { MyerrorProvider.SetError(NombretextBox, "El campo no debe estar vacio"); NombretextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(ISBNtextBox.Text)) { MyerrorProvider.SetError(ISBNtextBox, "El Campo no debe estar vacio"); ISBNtextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CategoriacomboBox.Text)) { MyerrorProvider.SetError(CategoriacomboBox, "Seleccione la categoria del libro"); CategoriacomboBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(EditoracomboBox.Text)) { MyerrorProvider.SetError(EditoracomboBox, "Seleccione la editorial de la cual proviene el libro"); EditoracomboBox.Focus(); paso = false; } if (ValidarISBN()) { MyerrorProvider.SetError(ISBNtextBox, "Ya existe un Libro con este ISBN"); ISBNtextBox.Focus(); paso = false; } return(paso); }
private bool validar() { bool paso = true; if (string.IsNullOrWhiteSpace(NobretextBox.Text)) { SuperErrorProvider.SetError(NobretextBox, "El campo no debe estar vacio"); NobretextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(ISBNtextBox.Text)) { SuperErrorProvider.SetError(ISBNtextBox, "El Campo no debe estar vacio"); ISBNtextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(DescripciontextBox.Text)) { SuperErrorProvider.SetError(DescripciontextBox, "El Campo no debe estar vacio"); DescripciontextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CategoriacomboBox.Text)) { SuperErrorProvider.SetError(CategoriacomboBox, "El Campo no debe estar vacio"); CategoriacomboBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(EditoracomboBox.Text)) { SuperErrorProvider.SetError(EditoracomboBox, "El Campo no debe estar vacio"); EditoracomboBox.Focus(); paso = false; } return(paso); }