private bool validar() { bool paso = true; MyErrorProvider.Clear(); if (DescripcionTextBox.Text == string.Empty) { MyErrorProvider.SetError(DescripcionTextBox, "El campo Descripcion no puede estar vacio"); DescripcionTextBox.Focus(); paso = false; } if (ExistenciaNumericUpDown.Value == 0) { MyErrorProvider.SetError(ExistenciaNumericUpDown, "El campo Existencia no puede estar en 0"); ExistenciaNumericUpDown.Focus(); paso = false; } if (CostoNumericUpDown.Value == 0) { MyErrorProvider.SetError(CostoNumericUpDown, "El campo Existencia no puede estar en 0"); CostoNumericUpDown.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; MyErrorProvider.Clear(); if (String.IsNullOrWhiteSpace(DescripciontextBox.Text.Trim())) { MyErrorProvider.SetError(DescripciontextBox, "Este campo no puede estar vacio"); DescripciontextBox.Focus(); paso = false; } if (RepetidosNo(DescripciontextBox.Text)) { MessageBox.Show("Ya existe un producto con ese nombre"); DescripciontextBox.Focus(); paso = false; } if (CostoumericUpDown.Value == 0) { MyErrorProvider.SetError(CostoumericUpDown, "Este campo no bebe ser 0"); CostoumericUpDown.Focus(); paso = false; } if (ExistenciaNumericUpDown.Value == 0) { MyErrorProvider.SetError(ExistenciaNumericUpDown, "Este campo no bebe ser 0"); ExistenciaNumericUpDown.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; MyErrorProvider.Clear(); if (string.IsNullOrEmpty(DescripcionTextBox.Text)) { MyErrorProvider.SetError(DescripcionTextBox, "El campo Descripcion no puede estar vacio"); DescripcionTextBox.Focus(); paso = false; } if (ExistenciaNumericUpDown.Value == 0) { MyErrorProvider.SetError(ExistenciaNumericUpDown, "Al crear el producto no puede la existencia estar en 0"); ExistenciaNumericUpDown.Focus(); paso = false; } if (CostoUNumericUpDown.Value == 0) { MyErrorProvider.SetError(CostoUNumericUpDown, "El campo Costo Unidad no puede estar vacio"); CostoUNumericUpDown.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; MyerrorProvider1.Clear(); if (DescripcionTextBox.Text == string.Empty) { MyerrorProvider1.SetError(DescuentoNumericUpDown, "El campo Descripcion no puede estar vacio"); DescripcionTextBox.Focus(); paso = false; } if (CostoNumericUpDown.Value == 0) { MyerrorProvider1.SetError(CostoNumericUpDown, "El campo Costo no puede estar vacio"); CostoNumericUpDown.Focus(); paso = false; } if (GananciaNumericUpDown.Value == 0) { MyerrorProvider1.SetError(GananciaNumericUpDown, "El campo Ganancia no puede estar vacio"); GananciaNumericUpDown.Focus(); } if (ExistenciaNumericUpDown.Value == 0) { MyerrorProvider1.SetError(ExistenciaNumericUpDown, "El campo Existencia no puede estar vacio"); ExistenciaNumericUpDown.Focus(); } if (ItbisNumericUpDown.Value == 0) { MyerrorProvider1.SetError(ItbisNumericUpDown, "El campo Itbis no puede estar vacio"); ItbisNumericUpDown.Focus(); } return(paso); }