Topic: table grid

How can I disable editing of certain columns in the table.

Re: table grid

Hi,
Try it like this
procedure form1_TableGrid1_OnChange (Sender: TObject);
begin
  form1.tablegrid1.columns[0].Options := form1.tablegrid1.columns[0].Options - coediting;
end;
This will prevent the first column in the tablegrid (Column0) from being edited.
Regards,
Derek.

Re: table grid

Thanks.