Author: William Gerbert
Setting read-only columns in StringGrid
Answer:
In the OnSelectCell event, this works fine (every even column is editable)
1 if Col mod 2 = 0 then2 grd.Options := grd.Options + [goEditing]
3 else4 grd.Options := grd.Options - [goEditing];