private bool Validar() { bool paso = true; ErrorProvider1.Clear(); if (string.IsNullOrWhiteSpace(EstudianteTextBox.Text)) { ErrorProvider1.SetError(EstudianteTextBox, "El campo no puede estar vacio"); EstudianteTextBox.Focus(); paso = false; } if (ValorTextbox.Text == string.Empty) { ErrorProvider1.SetError(, "El campo no puede estar vacio"); ValorTextbox.Focus(); paso = false; } if (ApellidoTextbox.Text == string.Empty) { MyerrorProvider.SetError(ApellidoTextbox, "El campo no puede estar vacio"); ApellidoTextbox.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; MyerrorProvider.Clear(); if (string.IsNullOrWhiteSpace(MatriculaTextBox.Text)) { MyerrorProvider.SetError(MatriculaTextBox, "El campo Direccion no puede estar vacio"); MatriculaTextBox.Focus(); paso = false; } if (NombreTextbox.Text == string.Empty) { MyerrorProvider.SetError(NombreTextbox, "El campo Nombre no puede estar vacio"); NombreTextbox.Focus(); paso = false; } if (ApellidoTextbox.Text == string.Empty) { MyerrorProvider.SetError(ApellidoTextbox, "El campo Nombre no puede estar vacio"); ApellidoTextbox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CedulaTextbox.Text.Replace("-", ""))) { MyerrorProvider.SetError(CedulaTextbox, "El campo Cedula no puede estar vacio"); CedulaTextbox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(TelefonoTextbox.Text.Replace("-", ""))) { MyerrorProvider.SetError(TelefonoTextbox, "El campo Telefono no puede estar vacio"); TelefonoTextbox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CelularTextbox.Text.Replace("-", ""))) { MyerrorProvider.SetError(CelularTextbox, "El campo Celular no puede estar vacio"); CelularTextbox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(EmailTextbox.Text)) { MyerrorProvider.SetError(EmailTextbox, "El campo Email no puede estar vacio"); EmailTextbox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(FechaNacimientoDateTimePicker.Text)) { MyerrorProvider.SetError(FechaNacimientoDateTimePicker, "El campo Fecha de nacimiento no puede estar vacio"); FechaNacimientoDateTimePicker.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(SexoComboBox.Text)) { MyerrorProvider.SetError(SexoComboBox, "El campo Sexo no puede estar vacio"); SexoComboBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(BalanceTextBox.Text)) { MyerrorProvider.SetError(BalanceTextBox, "El campo Balance no puede estar vacio"); BalanceTextBox.Focus(); paso = false; } return(paso); }