procedure TForm1.StringGrid1KeyPress(Sender: TObject; var Key: Char);
begin
  if TStringGrid(Sender).Col <> 3 then Key := #0;
end;