vide privé dataGridView5_CellValidating (expéditeur d'objet, DataGridViewCellValidatingEventArgs e)
{
commuter (e.ColumnIndex)
{
affaire 2 :
currentCell de DataGridViewCell = dataGridView5 [e.ColumnIndex, e.RowIndex] ;
currentCell.ErrorText = "" ;
international X ;
si (int.TryParse (currentCell.Value.ToString (), dehors x))
{
si (== 0 de x)
{
currentCell.ErrorText = « valeur ne devrait pas être zéro » ;
}
}
autrement
{
currentCell.ErrorText = « écrivent svp une valeur de nombre entier valide » ;
}
coupure ;
}
}
|