vacío privado dataGridView5_CellValidating (remitente del objeto, DataGridViewCellValidatingEventArgs e)
{
cambiar (e.ColumnIndex)
{
caso 2:
currentCell de DataGridViewCell = dataGridView5 [e.ColumnIndex, e.RowIndex];
currentCell.ErrorText = "";
internacional x;
si (int.TryParse (currentCell.Value.ToString (), hacia fuera x))
{
si (== 0 de x)
{
currentCell.ErrorText = “valor no debe ser cero”;
}
}
{
currentCell.ErrorText = “incorporan por favor un valor de número entero válido”;
}
rotura;
}
}
|