I'm looking for something like this :
dataGridView1.CurrentRow.Cells[0].Value != null
thanks for your time.
I'm looking for something like this :
dataGridView1.CurrentRow.Cells[0].Value != null
thanks for your time.
You can get the value of a certain cell in a GridView through the GetRowCellValue() method:
gridView.GetRowCellValue(rowHandle, column) != null;
You can get the rowHandle
by focusing on the desired row and using
int rowHandle = gridView1.FocusedRowHandle;