Funnier still is the MSDN help in VS2005 for DataGridViewCell.ReadOnly Property
"
Property Value
true if the cell's data can be
edited; otherwise, false.
"
So you set ReadOnly to true if the cell's data can be edited? Then you set it to false and the cell is no longer ReadOnly?
Frustrating to say the least!
If you're binding to a DataTable, you can set that table's column to be read only. That has the major downside of making all cells in that column read only.
Jebrew