Solución:
Prueba esto
string data = string.Empty;
int indexOfYourColumn = 0;
foreach (DataGridViewRow row in dataGridView1.Rows)
data = row.Cells[indexOfYourColumn].Value;
Quizás esto también ayude. Para obtener una celda:
string data = (string)DataGridView1[iCol, iRow].Value;
Entonces puede simplemente recorrer filas y columnas.
Documentación.
prueba esto
foreach (DataGridViewRow row in dataGridView1.Rows)
{
foreach (DataGridViewCell cell in row.Cells)
{
if (cell.ColumnIndex == 0) //Set your Column Index
{
//DO your Stuff here..
}
}
}
o al revés
foreach (DataGridViewColumn col in dataGridView1.Columns)
{
if (col.Name == "MyColName")
{
//DO your Stuff here..
}
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)