Okay I have a datagridview with multiple rows and columns of data. I set the grid to Readonly == true by default, but have a method that when the user double clicks the datagridview, it's gets the current cell the user is clicking and then uses this line of code
dataGridView1 [locX, locY].ReadOnly = false;
What I want it to do, is when the user double clicks the selected cell it will allow me to edit the current cell (also the reason I don't have readonly off, is because some columns I don't want to be allowed to edit and I don't want the user to accidently click a square and editing it when they don't mean to, that's why I add the double click in)