private bool ValidarGuardar() { bool paso = true; errorProvider.Clear(); if (DescripciontextBox.Text == string.Empty) { errorProvider.SetError(DescripciontextBox, "El Campo no puede estar vacio."); DescripciontextBox.Focus(); paso = false; } if (CostotextBox.Text == string.Empty) { errorProvider.SetError(CostotextBox, "El Campo no puede estar vacio."); CostotextBox.Focus(); paso = false; } if (ExistenciatextBox.Text == string.Empty) { errorProvider.SetError(ExistenciatextBox, "El Campo no puede estar vacio."); ExistenciatextBox.Focus(); paso = false; } return(paso); }
private bool Validar() { bool paso = true; MyerrorProvider.Clear(); if (DescripciontextBox.Text == string.Empty) { MyerrorProvider.SetError(DescripciontextBox, " Debes poner una descripcion"); DescripciontextBox.Focus(); paso = false; } if (ExistenciatextBox.Text == "0") { MyerrorProvider.SetError(ExistenciatextBox, "Existencia no puede ser 0"); ExistenciatextBox.Focus(); paso = false; } if (ExistenciatextBox.Text == string.Empty) { MyerrorProvider.SetError(ExistenciatextBox, "Existencia no puede estar vacia"); ExistenciatextBox.Focus(); paso = false; } if (CostotextBox.Text == "0") { MyerrorProvider.SetError(CostotextBox, "Costo no puede ser 0"); CostotextBox.Focus(); paso = false; } if (CostotextBox.Text == string.Empty) { MyerrorProvider.SetError(CostotextBox, "Costo no puede estar vacio"); CostotextBox.Focus(); paso = false; } return(paso); }