I have a datagridview that no matter what cell I click on returns an out of index error.
When I debug the following code I get a -1 value for e.ColumnIndex. As for e.RowIndex, I get the correct row that I have clicked on.
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
form2.value = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
}
I have tried to replace the e.ColumnIndex with a static int just to see if it works. When I add the int it doesn't do anything when I click on a particular row or column.
Anyone any ideas how I can change the ColumnIndex or how I can work around this issue.
if (e.RowIndex > 0 && e.ColumnIndex > 0) { ... }Write Inside this.. – A.V Jan 2 at 13:35