private bool SetError(int error) { bool paso = false; if (error == 1 && IDcomboBox.Text == string.Empty) { IderrorProvider.SetError(IDcomboBox, "Llenar Id"); paso = true; } if (error == 2 && PrecionumericUpDown.Value == 0) { DemasCamposerrorProvider.SetError(PrecionumericUpDown, "LLenar Precio"); paso = true; } if (error == 2 && DepartamentocomboBox.Text == string.Empty) { DemasCamposerrorProvider.SetError(DepartamentocomboBox, "LLenar Departamento"); paso = true; } if (error == 2 && CantidadnumericUpDown.Value == 0) { DemasCamposerrorProvider.SetError(CantidadnumericUpDown, "LLenar Cantidad"); paso = true; } if (error == 2 && DescripciontextBox.Text == string.Empty) { DemasCamposerrorProvider.SetError(DescripciontextBox, "LLenar Descripcion"); paso = true; } return(paso); }
private void BuscarButton_Click(object sender, EventArgs e) { if (Utils.NoWhiteNoSpace(empleadoIdTextBox.Text)) { Empleado empleado; int id = int.Parse(empleadoIdTextBox.Text); using (var context = new DAL.Repositorio <Empleado>()) { empleado = context.Buscar(x => x.EmpleadoId == id); } if (empleado != null) { nombreTextBox.Text = empleado.Nombres; fechaDeNacimentoDateTimePicker.Value = empleado.FechaNacimientos; sueldoTextBox.Text = empleado.Sueldos.ToString(); IderrorProvider.Clear(); } else { MessageBox.Show("Este id de empleado no existe!"); } } else { IderrorProvider.SetError(empleadoIdTextBox, "Id vacio!"); } }
private bool validarId(string mensaje) { if (string.IsNullOrEmpty(usuarioIdTextBox.Text)) { IderrorProvider.SetError(usuarioIdTextBox, "Ingresar el id"); MessageBox.Show(mensaje); return(false); } else { return(true); } }
private bool SetError(int error) { bool paso = false; if (error == 1 && IDcomboBox.Text == string.Empty) { IderrorProvider.SetError(IDcomboBox, "Llenar Campo Id"); paso = true; } if (error == 2 && NombretextBox.Text == string.Empty) { DemaserrorProvider.SetError(NombretextBox, "Llenar Nombre"); paso = true; } return(paso); }
private bool ValidarConsul() { if (FiltrarcomboBox.SelectedIndex == 0) { if (string.IsNullOrEmpty(FiltrotextBox.Text)) { IderrorProvider.SetError(FiltrotextBox, "Ingrese el campo...."); return(false); } if (FiltrarcomboBox.SelectedIndex == 1 && PeliculasBll.GetListaNombre(FiltrotextBox.Text).Count == 0) { MessageBox.Show("No existe registro con este campo de filtro intertar con otro por favor"); return(false); } } IderrorProvider.Clear(); return(true); }
private bool Validar(int error) { bool paso = false; if (error == 1 && IdnumericUpDown.Value == 0) { IderrorProvider.SetError(IdnumericUpDown, "Llenar Id"); paso = true; } if (error == 2 && TypecomboBox.Text == string.Empty) { errorProvider.SetError(TypecomboBox, "Debes seleccionar un Tipo"); paso = true; } if (error == 2 && CedulamaskedTextBox.Text == string.Empty) { errorProvider.SetError(CedulamaskedTextBox, "Debes ingresar una Cedula"); paso = true; } if (error == 2 && NombretextBox.Text == string.Empty) { errorProvider.SetError(NombretextBox, "Debes ingresar un Nombre"); paso = true; } if (error == 2 && DirecciontextBox.Text == string.Empty) { errorProvider.SetError(DirecciontextBox, "Debes ingresar una Direccion"); paso = true; } if (error == 2 && TelefonomaskedTextBox.Text == string.Empty) { errorProvider.SetError(TelefonomaskedTextBox, "Debes ingresar un numero de Telefono"); paso = true; } return(paso); }
private void EliminarButton_Click(object sender, EventArgs e) { if (string.IsNullOrWhiteSpace(empleadoIdTextBox.Text)) { int id = int.Parse(empleadoIdTextBox.Text); using (var context = new DAL.Repositorio <Empleado>()) { if (context.Eliminar(context.Buscar(x => x.EmpleadoId == id))) { Limpiar(); MessageBox.Show("Este empleado eliminado!"); } else { MessageBox.Show("No se puedo eliminar!"); } } } else { IderrorProvider.SetError(empleadoIdTextBox, "Id vacio!"); } }
private bool Validar(int error) { bool paso = false; if (error == 1 && IdnumericUpDown.Value == 0) { IderrorProvider.SetError(IdnumericUpDown, "Llenar Partido Id"); paso = true; } if (error == 2 && TipoPartidocomboBox.Text == string.Empty) { errorProvider.SetError(TipoPartidocomboBox, "Debes seleccionar un Tipo de Partido"); paso = true; } if (error == 2 && NombrePartidotextBox.Text == string.Empty) { errorProvider.SetError(NombrePartidotextBox, "Debes ingresar un Nombre"); paso = true; } if (error == 2 && LugarPartidotextBox.Text == string.Empty) { errorProvider.SetError(LugarPartidotextBox, "Debes ingresar un Lugar"); paso = true; } if (error == 2 && CantidadtextBox.Text == string.Empty) { errorProvider.SetError(CantidadtextBox, "Debes ingresar una Cantidad"); paso = true; } return(paso); }