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 void ExistenciatextBox_TextChanged(object sender, EventArgs e) { if (!IsNumber(ExistenciatextBox.Text)) { ExistenciatextBox.Clear(); } }
private void Nuevobutton_Click(object sender, EventArgs e) { ProductoIDnumericUpDown.Value = 0; DescripciontextBox.Clear(); ExistenciatextBox.Clear(); CostotextBox.Clear(); ValorInventariotextBox.Clear(); }
private void Nuevobutton_Click(object sender, EventArgs e) { IdnumericUpDown.Value = 0; FechaVencimientodateTimePicker.Value = DateTime.Now; DescripciontextBox.Clear(); PreciotextBox.Clear(); ExistenciatextBox.Clear(); CantidadCotizadatextBox.Clear(); }
private void Limpiar() { ArticuloIdnumericUpDown.Value = 0; NombreArticulotextBox.Clear(); ExistenciatextBox.Clear(); PrecioVentatextBox.Clear(); PrecioCompratextBox.Clear(); FechaIngresodateTimePicker.Value = DateTime.Now; CategoriacomboBox.SelectedValue = 0; ITBIStextBox.Clear(); MYerrorProvider.Clear(); }
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); }