private bool Validar() { bool paso = true; if (NombreTextBox.Text == string.Empty) { MessageBox.Show(NombreTextBox.Text, "El Campo Nombre no Puede estar vacio"); NombreTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(DireccionTextBox.Text)) { MessageBox.Show(DireccionTextBox.Text, "El Campo Direccion no puede estar vacio"); DireccionTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CedulaTextBox.Text)) { MessageBox.Show(CedulaTextBox.Text, "El Campo Cedula no puede estar vacio"); CedulaTextBox.Focus(); paso = false; } if (this.Detalle.Count == 0) { MessageBox.Show("Debe agregar algun telefono"); TelefonosTextBox.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; if (NombreTextBox.Text == string.Empty) { System.Windows.MessageBox.Show(NombreTextBox.Text, "No puede estar vacio"); NombreTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(DireccionTextBox.Text)) { System.Windows.MessageBox.Show(DireccionTextBox.Text, "No puede estar vacio"); DireccionTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CedulaTextBox.Text)) { System.Windows.MessageBox.Show(CedulaTextBox.Text, "No puede estar vacio"); CedulaTextBox.Focus(); paso = false; } return(paso); }
private bool validar() { bool paso = true; // MyErrorProvider.Clear(); if (NombreTextBox.Text == String.Empty) { Corregir(); // MyErrorProvider.SetError(NombreTextBox, "El campo nombre no puede estar vacio"); NombreTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(DireccionTextBox.Text)) { Corregir(); // MyErrorProvider.SetError(DireccionTextBox, "El campo no puede esta vacio"); DireccionTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CedulaTextBox.Text.Replace("-", ""))) { Corregir(); // MyErrorProvider.SetError.SetError(CedulaTextBox, "El campo cedula no puede estar vacio"); CedulaTextBox.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; if (NombreTextBox.Text == string.Empty) { MessageBox.Show(NombreTextBox.Text, "El campo Nombre no puede estar vacio "); NombreTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(DireccionTextBox.Text)) { MessageBox.Show(DireccionTextBox.Text, "El campo Direccion no puede estar vacio"); DireccionTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CedulaTextBox.Text)) { MessageBox.Show(CedulaTextBox.Text, "El campo Cedula no puede estar vacio"); CedulaTextBox.Focus(); paso = false; } Personas personas = PersonasBLL.Buscar((int)idTextBox.Text.ToInt()); return(paso); }
private bool Validar() { bool paso = true; if (NombreTextBox.Text == string.Empty) { MessageBox.Show(NombreTextBox.Text, "No puede estar vacio"); NombreTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(DireccionTextBox.Text)) { MessageBox.Show(DireccionTextBox.Text, "No puede estar vacio"); DireccionTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CedulaTextBox.Text)) { MessageBox.Show(CedulaTextBox.Text, "No puede estar vacio"); CedulaTextBox.Focus(); paso = false; } if (this.Detalle.Count == 0) { //MessageBox.Show(CargarDataGrid.ItemsSource,"Debe agregar algun telefono"); TelefonoTextBox.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; if (string.IsNullOrWhiteSpace(NombresTextBox.Text)) { MessageBox.Show("El Campo Nombres no puede estar Vacío"); NombresTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(TelefonoTextBox.Text)) { MessageBox.Show("El Campo Telefono no puede estar Vacío"); TelefonoTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CedulaTextBox.Text.Replace("-", ""))) { MessageBox.Show("El Campo Cedula no puede estar Vacío"); CedulaTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(DireccionTextBox.Text)) { MessageBox.Show("El Campo Dirección no puede estar Vacío"); DireccionTextBox.Focus(); paso = false; } return(paso); }
private void CedulaTextBox_TextChanged(object sender, TextChangedEventArgs e) { try { if (CedulaTextBox.Text.Trim() != string.Empty) { long.Parse(CedulaTextBox.Text); } if (CedulaTextBox.Text.Length != 11) { CedulaTextBox.Foreground = Brushes.Red; } else { CedulaTextBox.Foreground = Brushes.Black; } } catch { MessageBox.Show("El valor digitado en el campo (Cedula) no es un número.\n\nPor favor, digite números (0-9).", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); CedulaTextBox.Text = "0"; CedulaTextBox.Focus(); CedulaTextBox.SelectAll(); } }
private bool Validar() { bool paso = true; if (NombreTextBox.Text == string.Empty) { MessageBox.Show(NombreTextBox.Text, "El campo Nombre no puede estar vacio "); NombreTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(DireccionTextBox.Text)) { MessageBox.Show(DireccionTextBox.Text, "El campo Direccion no puede estar vacio"); DireccionTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CedulaTextBox.Text.Replace("-", ""))) { MessageBox.Show(CedulaTextBox.Text, "El campo Cedula no puede estar vacio"); CedulaTextBox.Focus(); paso = false; } if (this.Detalles.Count == 0) { MessageBox.Show(DetalleDataGrid.ToString(), "Debe Agregar algun Telefono"); TelefonoTextBox.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; if (string.IsNullOrWhiteSpace(NombresTextBox.Text)) { MessageBox.Show("No se Permite dejar Campos Vacíos"); NombresTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(TelefonoTextBox.Text)) { MessageBox.Show("No se Permite dejar Campos Vacíos"); TelefonoTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CedulaTextBox.Text)) { MessageBox.Show("No se Permite dejar Campos Vacíos"); CedulaTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(DireccionTextBox.Text)) { MessageBox.Show("No se Permite dejar Campos Vacíos"); DireccionTextBox.Focus(); paso = false; } return(paso); }
//Minimo private bool ValidarMM() { bool Maximo = true; var cadenaT = TelefonoTextBox.Text; if (cadenaT.Length < 10) { Maximo = false; GuardarButton.IsEnabled = false; MessageBox.Show("El Telefono no es Valido", "Error", MessageBoxButton.OK, MessageBoxImage.Warning); TelefonoTextBox.Clear(); TelefonoTextBox.Focus(); GuardarButton.IsEnabled = true; } else if (cadenaT.Length >= 13) { Maximo = false; GuardarButton.IsEnabled = false; MessageBox.Show("El Telefono no es Valido", "Error", MessageBoxButton.OK, MessageBoxImage.Warning); TelefonoTextBox.Clear(); TelefonoTextBox.Focus(); GuardarButton.IsEnabled = true; } var cadenaC = CedulaTextBox.Text; if (cadenaC.Length < 10) { Maximo = false; GuardarButton.IsEnabled = false; MessageBox.Show("La Cedula no es Valido", "Error", MessageBoxButton.OK, MessageBoxImage.Warning); CedulaTextBox.Clear(); CedulaTextBox.Focus(); GuardarButton.IsEnabled = true; } else if (cadenaC.Length >= 14) { Maximo = false; GuardarButton.IsEnabled = false; MessageBox.Show("La Cedula no es Valido", "Error", MessageBoxButton.OK, MessageBoxImage.Warning); CedulaTextBox.Clear(); CedulaTextBox.Focus(); GuardarButton.IsEnabled = true; } return(Maximo); }
private bool Validar() { bool paso = true; if (string.IsNullOrWhiteSpace(EstudianteIdTextBox.Text)) { MessageBox.Show("No puede dejar el campo de estudiante id vacio"); EstudianteIdTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(NombresTextBox.Text)) { MessageBox.Show("No puede dejar el campo de Nombre Vacio"); NombresTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(TelefonoTextBox.Text)) { MessageBox.Show("No puede dejar el campo de Telefono vacio"); TelefonoTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CedulaTextBox.Text)) { MessageBox.Show("No puede dejar el campo de cedula vacio"); CedulaTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(DireccionTextBox.Text)) { MessageBox.Show("No puede dejar el campo de Direccion vacio"); DireccionTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(FechaNacimientoDatePicker.Text)) { MessageBox.Show("No puede dejar el campo de fecha de nacimiento vacio"); FechaNacimientoDatePicker.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; MyErrorProvider.Clear(); if (NombresTextBox.Text == string.Empty) { MyErrorProvider.SetError(NombresTextBox, "El campo Nombre no puede estar vacio"); NombresTextBox.Focus(); paso = false; } if (CedulaTextBox.Text == string.Empty) { MyErrorProvider.SetError(CedulaTextBox, "El campo Cedula no puede estar vacio"); CedulaTextBox.Focus(); paso = false; } if (TelefonoTextBox.Text == string.Empty) { MyErrorProvider.SetError(TelefonoTextBox, "El campo Telefono no puede estar vacio"); TelefonoTextBox.Focus(); paso = false; } if (CelularTextBox.Text == string.Empty) { MyErrorProvider.SetError(CelularTextBox, "El campo Celular no puede estar vacio"); CelularTextBox.Focus(); paso = false; } if (DireccionTextBox.Text == string.Empty) { MyErrorProvider.SetError(DireccionTextBox, "El campo Direccion no puede estar vacio"); DireccionTextBox.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; if (NombreTextBox.Text == string.Empty) { MessageBox.Show("El campo no puede estar vacio", "Error"); NombreTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(DireccionTextBox.Text)) { MessageBox.Show("El campo Direccion no puede estar vacio", "Error"); DireccionTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CedulaTextBox.Text.Replace("-", ""))) { MessageBox.Show("El campo Cedula no puede estar vacio", "Error"); CedulaTextBox.Focus(); paso = false; } if (string.IsNullOrEmpty(FechaDatePicker.Text)) { MessageBox.Show("El campo Fecha no puede estar vacio", "Error"); FechaDatePicker.Focus(); paso = false; } if (this.Detalle.Count == 0) { MessageBox.Show("Esta campo no puede estar vacio", "Error"); DetalleDataGrid.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; if (string.IsNullOrWhiteSpace(NombresTextBox.Text)) { MessageBox.Show("EL campo *Nombres* no puede estar vacio", "Aviso", MessageBoxButton.OKCancel, MessageBoxImage.Information); NombresTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CelularTextBox.Text)) { MessageBox.Show("EL campo *Celular* no puede estar vacio", "Aviso", MessageBoxButton.OKCancel, MessageBoxImage.Information); CelularTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CedulaTextBox.Text)) { MessageBox.Show("EL campo *Cedula* no puede estar vacio", "Aviso", MessageBoxButton.OKCancel, MessageBoxImage.Information); CedulaTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(FechaNacTimePicker.Text)) { MessageBox.Show("EL campo *Fecha Nacimiento* no puede estar vacio", "Aviso", MessageBoxButton.OKCancel, MessageBoxImage.Information); FechaNacTimePicker.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(EmailTextBox.Text)) { MessageBox.Show("EL campo *Email* no puede estar vacio", "Aviso", MessageBoxButton.OKCancel, MessageBoxImage.Information); EmailTextBox.Focus(); paso = false; } return(paso); }
private bool Validar() //Validar los campos { bool paso = true; if (string.IsNullOrEmpty(EstudianteIDTextBox.Text)) { MessageBox.Show("El campo PersonaID debe estar en 0 para agregar una nueva persona"); EstudianteIDTextBox.Focus(); paso = false; } if (NombreTextBox.Text == string.Empty) { MessageBox.Show("El campo direccion no puede estar vacio"); NombreTextBox.Focus(); paso = false; } if (string.IsNullOrEmpty(CedulaTextBox.Text)) { MessageBox.Show("El campo cedula no puede estar vacio"); CedulaTextBox.Focus(); paso = false; } if (string.IsNullOrEmpty(TelefonoTextBox.Text)) { MessageBox.Show("El campo telefono no puede estar vacio"); TelefonoTextBox.Focus(); paso = false; } if (string.IsNullOrEmpty(DireccionTextBox.Text)) { MessageBox.Show("El campo direccion no puede estar vacio"); DireccionTextBox.Focus(); paso = false; } return(paso); }
private bool Validar() { //var controles = this.Controls.OfType<TextBox>(); //foreach (var item in controles) //{ // if (String.IsNullOrWhiteSpace(item.Text)) // SuperErrorProvider.SetError(item, "campo obligatorio"); //} bool paso = true; if (NombeTextBox.Text == string.Empty || CedulaTextBox.Text == string.Empty || TelefonoTextBox.Text == string.Empty || DireccionTextBox.Text == string.Empty) { if (DireccionTextBox.Text == string.Empty) { SuperErrorProvider.SetError(DireccionTextBox, "No puede dejar este campo vacio"); DireccionTextBox.Focus(); } if (CedulaTextBox.Text == string.Empty) { SuperErrorProvider.SetError(CedulaTextBox, "No puede dejar este campo vacio"); CedulaTextBox.Focus(); } if (TelefonoTextBox.Text == string.Empty) { SuperErrorProvider.SetError(TelefonoTextBox, "No puede dejar este campo vacio"); TelefonoTextBox.Focus(); } if (NombeTextBox.Text == string.Empty) { SuperErrorProvider.SetError(NombeTextBox, "No puede dejar este campo vacio"); NombeTextBox.Focus(); } paso = false; } return(paso); }
private bool Validar() { bool paso = true; if (string.IsNullOrEmpty(NombreTextBox.Text)) { MessageBox.Show("Debe Ingresar Nombre", "ERROR", MessageBoxButton.OK, MessageBoxImage.Warning); NombreTextBox.Focus(); paso = false; } if (string.IsNullOrEmpty(DireccionTextBox.Text)) { MessageBox.Show("Debe Ingresar Direccion", "ERROR", MessageBoxButton.OK, MessageBoxImage.Warning); DireccionTextBox.Focus(); paso = false; } if (string.IsNullOrEmpty(CedulaTextBox.Text)) { MessageBox.Show("Debe Ingresar Cedula", "ERROR", MessageBoxButton.OK, MessageBoxImage.Warning); CedulaTextBox.Focus(); paso = false; } if (string.IsNullOrEmpty(FechaNacimientoDateTimePicker.Text)) { MessageBox.Show("Debe Ingresar Fecha de Nacimiento", "ERROR", MessageBoxButton.OK, MessageBoxImage.Warning); FechaNacimientoDateTimePicker.Focus(); paso = false; } if (Detalles.Count == 0) { MessageBox.Show("Debe agregar almenos una Telefono"); TelefonoTextBox.Focus(); paso = false; } return(paso); }
private bool ValidaR() { bool paso = true; if (NombreTextBox.Text == string.Empty) { NombreTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(DireccionTextBox.Text)) { DireccionTextBox.Focus(); } if (string.IsNullOrWhiteSpace(CedulaTextBox.Text.Replace("-", ""))) { CedulaTextBox.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; if (string.IsNullOrWhiteSpace(PersonaIdTextBox.Text)) { MessageBox.Show("No puede dejar el campo de Persona Id vacio..."); PersonaIdTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(NombreTextBox.Text)) { MessageBox.Show("No puede dejar el campo de Nombre vacio..."); NombreTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(DireccionTextBox.Text)) { MessageBox.Show("No puede dejar el campo de Teléfono vacio..."); DireccionTextBox.Focus(); paso = false; } if (string.IsNullOrWhiteSpace(CedulaTextBox.Text)) { MessageBox.Show("No puede dejar el campo de Cédula vacio..."); CedulaTextBox.Focus(); paso = false; } if (DetalleDataGrid.DataContext == null) { MessageBox.Show("No puede dejar la persona sin un telefono ni un tipo"); TelefonoTextBox.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; if (string.IsNullOrEmpty(NombresTextBox.Text)) { paso = false; MessageBox.Show("El campo Nombres no puede estar vacio", "Informacion", MessageBoxButton.OK, MessageBoxImage.Information); NombresTextBox.Focus(); } if (string.IsNullOrEmpty(ApellidosTextBox.Text)) { paso = false; MessageBox.Show("El campo Apellidos no puede estar vacio", "Informacion", MessageBoxButton.OK, MessageBoxImage.Information); NombresTextBox.Focus(); } if (!CedulaValida(CedulaTextBox.Text)) { paso = false; MessageBox.Show("Cédula No Valida, Debe introducir solo números !!!\n Introducca la Cédula sin guiones.", "Informacion", MessageBoxButton.OK, MessageBoxImage.Warning); CedulaTextBox.Focus(); } if (SexoComboBox.SelectedItem == null) { paso = false; MessageBox.Show("El campo Cedula no puede estar vacio", "Informacion", MessageBoxButton.OK, MessageBoxImage.Information); SexoComboBox.Focus(); } if (!NumeroValido(CelularTextBox.Text)) { paso = false; MessageBox.Show("Celular No Valido, Debe introducir solo números !!!", "Informacion", MessageBoxButton.OK, MessageBoxImage.Warning); CelularTextBox.Focus(); } if (!NumeroValido(TelefonoTextBox.Text)) { paso = false; MessageBox.Show("Teléfono No Valido, Debe introducir solo números !!!", "Informacion", MessageBoxButton.OK, MessageBoxImage.Warning); TelefonoTextBox.Focus(); } if (string.IsNullOrEmpty(DireccionTextBox.Text)) { paso = false; MessageBox.Show("El campo Direccion no puede estar vacio", "Informacion", MessageBoxButton.OK, MessageBoxImage.Information); DireccionTextBox.Focus(); } if (!EmailValido(EmailTextBox.Text)) { paso = false; MessageBox.Show("Email No Valido !!!", "Informacion", MessageBoxButton.OK, MessageBoxImage.Warning); EmailTextBox.Focus(); } if (string.IsNullOrEmpty(NombreUsuarioTextBox.Text)) { paso = false; MessageBox.Show("El campo Nombre Usuario no puede estar vacio", "Informacion", MessageBoxButton.OK, MessageBoxImage.Information); NombreUsuarioTextBox.Focus(); } if (string.IsNullOrEmpty(ContrasenaTextBox.Text)) { paso = false; MessageBox.Show("El campo contraseña Usuario no puede estar vacio", "Informacion", MessageBoxButton.OK, MessageBoxImage.Information); NombreUsuarioTextBox.Focus(); } return(paso); }
private void GuardarButton_Click(object sender, RoutedEventArgs e) { { if (!Validar()) { return; } if (RepresentanteIdTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Cliente Id) está vacío.\n\nAsigne un Id al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); RepresentanteIdTextBox.Text = "0"; RepresentanteIdTextBox.Focus(); RepresentanteIdTextBox.SelectAll(); return; } if (UsuarioIdComboBox.Text == string.Empty) { MessageBox.Show("El Campo (Usuario Id) está vacío.\n\nPorfavor, Seleccione su Nombre de Usuario.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); UsuarioIdComboBox.IsDropDownOpen = true; return; } if (NombreTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Nombres) está vacío.\n\nAsigne un Nombre al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); NombreTextBox.Clear(); NombreTextBox.Focus(); return; } if (CedulaTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Cédula) está vacío.\n\nAsigne una Cedula al Cedula.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); CedulaTextBox.Text = "0"; CedulaTextBox.Focus(); CedulaTextBox.SelectAll(); return; } if (CedulaTextBox.Text.Length != 11) { MessageBox.Show($"La Cédula ({CedulaTextBox.Text}) no es válida.\n\nLa cedula debe tener 11 dígitos (0-9).", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); CedulaTextBox.Focus(); return; } if (DireccionTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Dirección) está vacío.\n\nAsigne una Dirección al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); DireccionTextBox.Clear(); DireccionTextBox.Focus(); return; } var paso = RepresentantesBLL.Guardar(representantes); if (paso) { Limpiar(); MessageBox.Show("Transacción Exitosa", "Éxito", MessageBoxButton.OK, MessageBoxImage.Information); } else { MessageBox.Show("Transacción Fallida", "Error", MessageBoxButton.OK, MessageBoxImage.Error); } } }
private void GuardarButton_Click(object sender, RoutedEventArgs e) { bool paso = false; { if (!Validar()) { return; } if (ClienteIdTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Cliente Id) está vacío.\n\nAsigne un Id al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); ClienteIdTextBox.Text = "0"; ClienteIdTextBox.Focus(); ClienteIdTextBox.SelectAll(); return; } if (UsuarioIdComboBox.Text == string.Empty) { MessageBox.Show("El Campo (Usuario Id) está vacío.\n\nPorfavor, Seleccione su Nombre de Usuario.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); UsuarioIdComboBox.IsDropDownOpen = true; return; } if (NombresTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Nombres) está vacío.\n\nAsigne un Nombre al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); NombresTextBox.Clear(); NombresTextBox.Focus(); return; } if (ApellidoTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Apellidos) está vacío.\n\nAsigne un Apellidos al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); ApellidoTextBox.Clear(); ApellidoTextBox.Focus(); return; } if (CedulaTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Cédula) está vacío.\n\nAsigne una Cedula al Cedula.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); CedulaTextBox.Text = "0"; CedulaTextBox.Focus(); CedulaTextBox.SelectAll(); return; } if (CedulaTextBox.Text.Length != 11) { MessageBox.Show($"La Cédula ({CedulaTextBox.Text}) no es válida.\n\nLa cedula debe tener 11 dígitos (0-9).", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); CedulaTextBox.Focus(); return; } if (FemeninoRadioButton.IsChecked.Value == false && MasculinoRadioButton.IsChecked.Value == false) { MessageBox.Show("El Campo (Género) está vacío.\n\nAsigne un Genero al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); FemeninoRadioButton.Focus(); return; } if (TelefonoTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Teléfono) está vacío.\n\nAsigne un Teléfono al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); TelefonoTextBox.Text = "0"; TelefonoTextBox.Focus(); TelefonoTextBox.SelectAll(); return; } if (TelefonoTextBox.Text.Length != 10) { MessageBox.Show($"El Teféfono ({TelefonoTextBox.Text}) no es válido.\n\nEl Teléfono debe tener 10 dígitos (0-9).", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); TelefonoTextBox.Focus(); return; } if (FechaDatePicker.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Fecha Nacimiento) está vacío.\n\nAsigne una Fecha de Nacimiento al Nacimiento.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); FechaDatePicker.Focus(); return; } if (DireccionTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Dirección) está vacío.\n\nAsigne una Dirección al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); DireccionTextBox.Clear(); DireccionTextBox.Focus(); return; } if (CelularTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Teléfono) está vacío.\n\nAsigne un Teléfono al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); CelularTextBox.Text = "0"; CelularTextBox.Focus(); CelularTextBox.SelectAll(); return; } if (CelularTextBox.Text.Length != 10) { MessageBox.Show($"El Celular ({CelularTextBox.Text}) no es válido.\n\nEl Celular debe tener 10 dígitos (0-9).", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); CelularTextBox.Focus(); return; } if (EmailTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Email) está vacío.\n\nAsigne una Correo al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); EmailTextBox.Clear(); EmailTextBox.Focus(); return; } if (EstadoCivilTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Estado Civil) está vacío.\n\nAsigne un Estado Civil al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); EstadoCivilTextBox.Clear(); EstadoCivilTextBox.Focus(); return; } if (OcupacionTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Nombres) está vacío.\n\nAsigne un Nombre al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); OcupacionTextBox.Clear(); OcupacionTextBox.Focus(); return; } if (ReligionTextBox.Text.Trim() == string.Empty) { MessageBox.Show("El Campo (Nombres) está vacío.\n\nAsigne un Nombre al Cliente.", "Advertencia", MessageBoxButton.OK, MessageBoxImage.Warning); ReligionTextBox.Clear(); ReligionTextBox.Focus(); return; } if (!editando) { paso = ClientesBLL.Guardar(clientes); } else { paso = ClientesBLL.Modificar(clientes); } if (paso) { Limpiar(); MessageBox.Show("Transacción Exitosa", "Éxito", MessageBoxButton.OK, MessageBoxImage.Information); } else { MessageBox.Show("Transacción Fallida", "Error", MessageBoxButton.OK, MessageBoxImage.Error); } } }
//Campo vacio private bool Validar() { bool esValido = true; if (ClienteIdTextBox.Text.Length == 0) { esValido = false; GuardarButton.IsEnabled = false; MessageBox.Show("ClienteId está vacio", "Fallo", MessageBoxButton.OK, MessageBoxImage.Warning); ClienteIdTextBox.Focus(); GuardarButton.IsEnabled = true; } if (NombresTextBox.Text.Length == 0) { esValido = false; GuardarButton.IsEnabled = false; MessageBox.Show("Nombres está vacio", "Fallo", MessageBoxButton.OK, MessageBoxImage.Warning); NombresTextBox.Focus(); GuardarButton.IsEnabled = true; } if (ApellidosTextBox.Text.Length == 0) { esValido = false; GuardarButton.IsEnabled = false; MessageBox.Show("Apellidos está vacio", "Fallo", MessageBoxButton.OK, MessageBoxImage.Warning); ApellidosTextBox.Focus(); GuardarButton.IsEnabled = true; } if (EmailTextBox.Text.Length == 0) { esValido = false; GuardarButton.IsEnabled = false; MessageBox.Show("Email está vacio", "Fallo", MessageBoxButton.OK, MessageBoxImage.Warning); EmailTextBox.Focus(); GuardarButton.IsEnabled = true; } if (TelefonoTextBox.Text.Length == 0) { esValido = false; GuardarButton.IsEnabled = false; MessageBox.Show("Telefono está vacia", "Fallo", MessageBoxButton.OK, MessageBoxImage.Warning); TelefonoTextBox.Focus(); GuardarButton.IsEnabled = true; } if (CedulaTextBox.Text.Length == 0) { esValido = false; GuardarButton.IsEnabled = false; MessageBox.Show("Cedula está vacia", "Fallo", MessageBoxButton.OK, MessageBoxImage.Warning); CedulaTextBox.Focus(); GuardarButton.IsEnabled = true; } if (DireccionTextBox.Text.Length == 0) { esValido = false; GuardarButton.IsEnabled = false; MessageBox.Show("Direccion está vacia", "Fallo", MessageBoxButton.OK, MessageBoxImage.Warning); DireccionTextBox.Focus(); GuardarButton.IsEnabled = true; } if (SexoComboBox.Text.Length == 0) { esValido = false; GuardarButton.IsEnabled = false; MessageBox.Show("Sexo está vacia", "Fallo", MessageBoxButton.OK, MessageBoxImage.Warning); SexoComboBox.Focus(); GuardarButton.IsEnabled = true; } return(esValido); }
private bool Validar() { bool paso = true; if (string.IsNullOrEmpty(FechaIngresoDateTimePicker.Text)) { paso = false; FechaIngresoDateTimePicker.Focus(); } if (string.IsNullOrEmpty(FechaNacimientoDateTimePicker.Text)) { paso = false; FechaNacimientoDateTimePicker.Focus(); } if (string.IsNullOrEmpty(SueldoTextBox.Text)) { paso = false; SueldoTextBox.Focus(); } if (string.IsNullOrEmpty(CargoTextBox.Text.Replace("-", ""))) { paso = false; CargoTextBox.Focus(); } if (!EmailValido(EmailTextBox.Text)) { paso = false; MessageBox.Show("Email No Valido !!!", "Informacion", MessageBoxButton.OK, MessageBoxImage.Warning); EmailTextBox.Focus(); } if (!NumeroValido(CelularTextBox.Text)) { paso = false; MessageBox.Show("Celular No Valido, Debe introducir solo números !!!", "Informacion", MessageBoxButton.OK, MessageBoxImage.Warning); CelularTextBox.Focus(); } if (!NumeroValido(TelefonoTextBox.Text)) { paso = false; MessageBox.Show("Teléfono No Valido, Debe introducir solo números !!!", "Informacion", MessageBoxButton.OK, MessageBoxImage.Warning); TelefonoTextBox.Focus(); } if (string.IsNullOrEmpty(DireccionTextBox.Text)) { paso = false; DireccionTextBox.Focus(); } if (!CedulaValida(CedulaTextBox.Text)) { paso = false; MessageBox.Show("Cédula No Valida, Debe introducir solo números !!!\n Introducca la Cédula sin guiones.", "Informacion", MessageBoxButton.OK, MessageBoxImage.Warning); CedulaTextBox.Focus(); } if (string.IsNullOrEmpty(ApellidosTextBox.Text)) { paso = false; ApellidosTextBox.Focus(); } if (string.IsNullOrEmpty(NombresTextBox.Text)) { paso = false; NombresTextBox.Focus(); } return(paso); }
private bool Validar() { bool paso = true; if (UsuarioIdTextBox.Text == string.Empty) { MessageBox.Show("UsuarioId Vacio"); UsuarioIdTextBox.Focus(); paso = false; } else if (NombresTextBox.Text == string.Empty) { MessageBox.Show("Nombres Vacio"); NombresTextBox.Focus(); paso = false; } else if (TelefonoTextBox.Text == string.Empty) { MessageBox.Show("Telefono Vacio"); TelefonoTextBox.Focus(); paso = false; } else if (CelularTextBox.Text == string.Empty) { MessageBox.Show("Celular Vacio"); CelularTextBox.Focus(); paso = false; } else if (EmailTextBox.Text == string.Empty) { MessageBox.Show("Email Vacio"); EmailTextBox.Focus(); paso = false; } else if (SexoComboBox.SelectedItem == null) { MessageBox.Show("Sexo Vacio"); SexoComboBox.Focus(); paso = false; } else if (CedulaTextBox.Text == string.Empty) { MessageBox.Show("Cedula Vacia"); CedulaTextBox.Focus(); paso = false; } else if (DireccionTextBox.Text == string.Empty) { MessageBox.Show("Direccion Vacio"); DireccionTextBox.Focus(); paso = false; } else if (TipoUsuarioComboBox.SelectedItem == null) { MessageBox.Show("Tipo de Usuario Vacio"); TipoUsuarioComboBox.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; if (string.IsNullOrEmpty(NombresTextBox.Text)) { paso = false; MessageBox.Show("El campo Nombres no puede estar vacio", "Informacion", MessageBoxButton.OK, MessageBoxImage.Information); NombresTextBox.Focus(); } if (string.IsNullOrEmpty(ApellidosTextBox.Text)) { paso = false; MessageBox.Show("El campo Apellidos no puede estar vacio", "Informacion", MessageBoxButton.OK, MessageBoxImage.Information); ApellidosTextBox.Focus(); } if (!CedulaValida(CedulaTextBox.Text)) { paso = false; MessageBox.Show("Cédula No Valida, Debe introducir solo números !!!\n Introducca la Cédula sin guiones.", "Informacion", MessageBoxButton.OK, MessageBoxImage.Warning); CedulaTextBox.Focus(); } if (SexoComboBox.SelectedItem == null) { paso = false; MessageBox.Show("Debe completar el campo sexo", "Informacion", MessageBoxButton.OK, MessageBoxImage.Information); SexoComboBox.Focus(); } if (!NumeroValido(CelularTextBox.Text)) { paso = false; MessageBox.Show("Celular No Valido, Debe introducir solo números !!!", "Informacion", MessageBoxButton.OK, MessageBoxImage.Warning); CelularTextBox.Focus(); } if (!NumeroValido(TelefonoTextBox.Text)) { paso = false; MessageBox.Show("Teléfono No Valido, Debe introducir solo números !!!", "Informacion", MessageBoxButton.OK, MessageBoxImage.Warning); TelefonoTextBox.Focus(); } if (string.IsNullOrEmpty(DireccionTextBox.Text)) { paso = false; MessageBox.Show("El campo Direccion no puede estar vacio", "Informacion", MessageBoxButton.OK, MessageBoxImage.Information); DireccionTextBox.Focus(); } if (!EmailValido(EmailTextBox.Text)) { paso = false; MessageBox.Show("Email No Valido !!!", "Informacion", MessageBoxButton.OK, MessageBoxImage.Warning); EmailTextBox.Focus(); } if (string.IsNullOrEmpty(FechaIngresoDateTimePicker.Text)) { paso = false; MessageBox.Show("El campo Fecha Ingreso no puede estar vacio", "Informacion", MessageBoxButton.OK, MessageBoxImage.Information); FechaIngresoDateTimePicker.Focus(); } if (string.IsNullOrEmpty(FechaNacimientoDateTimePicker.Text)) { paso = false; MessageBox.Show("El campo fecha nacimiento no puede estar vacio", "Informacion", MessageBoxButton.OK, MessageBoxImage.Information); FechaNacimientoDateTimePicker.Focus(); } return(paso); }