intymny pustka dataGridView5_CellValidating (przedmiot nadawca, DataGridViewCellValidatingEventArgs e)
{
zmiana (e.ColumnIndex)
{
skrzynka 2:
DataGridViewCell currentCell = dataGridView5 [e.ColumnIndex, e.RowIndex];
currentCell.ErrorText = "";
int x;
jeżeli (int.TryParse (currentCell.Value.ToString (), currentCell.Value.ToString x))
{
jeżeli (x == (0))
{
currentCell.ErrorText = "Wartość musieć zero";
}
}
inny
{
currentCell.ErrorText = "Zadawalać wchodzić do ważny integer wartość";
}
przerwa;
}
}
|