hi there,
i actually found this worked:
procedure Tfproductmanager.sgKeyPress(Sender: TObject; var Key: char);
begin
if (Key=#13) then begin
with (Sender as TStringGrid) do begin
col:=col+1;
end;
end;
end;
and i also diabled the goRowSelect as well
thanks heaps