Torna al Thread
If DataGridView1.Columns(e.ColumnIndex).Name = "Column1" Then
MsgBox("Cliccato")
Else
If DataGridView1.Columns(e.ColumnIndex).Name = "Column2" Then
If Convert.ToBoolean(DataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex).Value) = True Then
DataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex).Value = False
Else
DataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex).Value = True
End If
End If
End If