public void ValidarEspacios() { if (TxtRut.Text.Length < 8 || TxtRut.Text.Length > 10) { errorRut.SetError(TxtRut, "El rut no puede tener menos de 8 caracteres ni más de 10"); TxtRut.Focus(); return; } errorRut.SetError(TxtRut, ""); if (TxtNombre.Text.Length < 1) { errorNombre.SetError(TxtNombre, "El nombre no puede quedar en blanco"); TxtNombre.Focus(); return; } errorNombre.SetError(TxtNombre, ""); if (TxtApellidos.Text.Length < 1) { errorApellidos.SetError(TxtApellidos, "Los apellidos no puede quedar en blanco"); TxtApellidos.Focus(); return; } errorApellidos.SetError(TxtApellidos, ""); }
private void BtnGuardar_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(TxtNumeroDocumento.Text)) { MessageBox.Show("Digite Numero de Documento", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtNumeroDocumento.Focus(); } else if (string.IsNullOrEmpty(TxtNombres.Text)) { MessageBox.Show("Digite Nombre del empleado", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtNombres.Focus(); } else if (string.IsNullOrEmpty(TxtApellidos.Text)) { MessageBox.Show("Digite Apellido del empleado", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtApellidos.Focus(); } else if (string.IsNullOrEmpty(CbxCargo.Text)) { MessageBox.Show("Seleccione Cargo del empleado", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtApellidos.Focus(); } else { Guardar(); } }
private void TxtApellidos_Validated(object sender, EventArgs e) { if (TxtApellidos.Text.Trim() == "") { epError.SetError(TxtApellidos, "Ingrese sus apellidos"); TxtApellidos.Focus(); } else { epError.Clear(); } }
private void BtnGuardar_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(TxtNombres.Text)) { MessageBox.Show("Escriba su Nombre", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtNombres.Focus(); } else if (string.IsNullOrEmpty(TxtApellidos.Text)) { MessageBox.Show("Escriba su Apellido", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); TxtApellidos.Focus(); } else { GuardarCambios(); } }
private void Window_Loaded(object sender, RoutedEventArgs e) { this.CargaTitulos(2); if (encargado.Genero == 2) { TbGenero_Checked(null, null); } else { TbGenero.IsChecked = false; } this.DataContext = encargado; if (mostrarEnCombo) { CbxGrado.SelectedValue = encargado.IdTitulo; } qCambio = String.Empty; TxtApellidos.Focus(); }