Subject Re: [IBO] Moving Cell in TIB_grid
Author Bayu
Hello Geoff,

> Please dont use reply and then change the subject line for new topics.
> This makes the message get threaded under the message from which you
> replied and hides it from view in newsgroups and when using threading
> in the email client.

Thanks for remind me about this.

> This facility is not built into IB_Grid, so you will have to program
> it using event handlers attached to KeyPress.

code in keypress is

procedure TForm1.IB_Grid1KeyPress(Sender: TObject; var Key: Char);
begin
if ord(key) = VK_RETURN then
key := #9;
end;

Doesn't work

What's wrong ?

regards