j'essaie de vérifier les cellules datagridview pour la valeur vide et nulle ... mais je ne peux pas le faire correctement ...
for (int i = 0; i < dataGridView1.Rows.Count; i++)
{
if ((String)dataGridView1.Rows[i].Cells[3].Value == String.Empty)
{
MessageBox.Show(" cell is empty");
return;
}
if ((String)dataGridView1.Rows[i].Cells[3].Value == "")
{
MessageBox.Show("cell in empty");
return ;
}
}
j'ai même essayé ces codes
if (String.IsNullOrEmpty(dataGridView1.Rows[i].Cells[3].Value))
{
MessageBox.Show("cell is empty");
return;
}
est-ce que quelqu'un peut m'aider avec ça...
Je voudrais essayer comme ça:
foreach (DataGridViewRow rw in this.dataGridView1.Rows)
{
for (int i = 0; i < rw.Cells.Count; i++)
{
if (rw.Cells[i].Value == null || rw.Cells[i].Value == DBNull.Value || String.IsNullOrWhiteSpace(rw.Cells[i].Value.ToString())
{
// here is your message box...
}
}
}
if (!GridView1.Rows[GridView1.CurrentCell.RowIndex].IsNewRow)
{
foreach (DataGridViewCell cell in GridView1.Rows[GridView1.CurrentCell.RowIndex].Cells)
{
//here you must test for all and then return only if it is false
if (cell.Value == System.DBNull.Value)
{
return false;
}
}
}
if (String.IsNullOrEmpty(dataGridView1.Rows[i].Cells[3].Value as String))
{
MessageBox.Show("cell is empty");
return;
}
Ajouter as String
, cela fonctionne pour moi.
Je pense que vous devriez vérifier d'abord null
Convert.IsDBNull(dataGridView1.Rows[j].Cells[1].FormattedValue)
Je pense que vous devriez utiliser ceci:
for (int i = 0; i < dataGridView1.RowCount; i++)
{
for (int j = 0; j < dataGridView1.ColumnCount; j++)
{
if (dataGridView1.Rows[i].Cells[j].Value == DBNull.Value)
{
dataGridView1.Rows[i].Cells[j].Value = "null";
}
}
}
dataGridView1.Update();
Essaye ça :
foreach (DataGridViewRow row in dataGridView.Rows)
{
IEnumerable<DataGridViewCell> cellsWithValusInRows = from DataGridViewCell cell in row.Cells
where string.IsNullOrEmpty((string)cell.Value)
select cell;
if (cellsWithValusInRows != null && cellsWithValusInRows.Any())
{
//Then cells with null or empty values where found
}
}
Puis vérifiez si la collection est nulle ou contient des éléments.
J'espère que cela a été utile.
Fonctionne parfaitement pour moi:
for (int i = dataGridView1.Rows.Count - 1; i >= 0; i--)
{
DataGridViewRow dataGridViewRow = dataGridView1.Rows[i];
foreach (DataGridViewCell cell in dataGridViewRow.Cells)
{
string val = cell.Value as string;
if (string.IsNullOrEmpty(val))
{
if (string.IsNullOrEmpty(dataGridView1.Rows[i].Cells[3].Value as string)) // If you want to check more then just one cell you could also add "&& (string.IsNullOrEmpty(dataGridView1.Rows[i].Cells[ANY NUMBER].Value as string)
{
MessageBox.Show(" cell is empty");
return;
/* or to delete replace with:
dataGridView1.Rows.Remove(dataGridViewRow);
break;
*/
}
}
}
}
for (int i = 0; i < GV1.Rows.Count; i++)
{
if ((String)GV1.Rows[i].Cells[4].Value == null)
{
MessageBox.Show(" cell is empty");
return;
}
}
Ça fonctionne bien.