Subject | Re: [IBO] Moving Cell in TIB_grid |
---|---|
Author | Bayu |
Post date | 2002-02-10T16:29:04Z |
Hello Geoff,
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
> Please dont use reply and then change the subject line for new topics.Thanks for remind me about this.
> 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.
> This facility is not built into IB_Grid, so you will have to programcode in keypress is
> it using event handlers attached to KeyPress.
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