vácuo confidencial dataGridView5_CellValidating (remetente do objeto, DataGridViewCellValidatingEventArgs e)
{
comutar (e.ColumnIndex)
{
caso 2:
currentCell de DataGridViewCell = dataGridView5 [e.ColumnIndex, e.RowIndex];
currentCell.ErrorText = "";
int x;
se (int.TryParse (currentCell.Value.ToString (), para fora x))
{
se (== 0 de x)
{
currentCell.ErrorText = “valor não deve ser zero”;
}
}
mais
{
currentCell.ErrorText = “incorporam por favor um valor de inteiro válido”;
}
ruptura;
}
}
|