Re: Bug on the beta release: table cell editor
- From: Dave Page <dpage(at)postgresql(dot)org>
- To: Hiroshi Saito <z-saito(at)guitar(dot)ocn(dot)ne(dot)jp>
- Cc: Guillaume Lelarge <guillaume(at)lelarge(dot)info>, o(dot)bouiron(at)isc84(dot)org, Derrick Betts <list(at)blueaxis(dot)com>, pgadmin support <pgadmin-support(at)postgresql(dot)org>
- Subject: Re: Bug on the beta release: table cell editor
- Date: Mon, 30 Jul 2007 21:28:10 +0100
- Message-id: <46AE49DA.9020402@postgresql.org> <text/plain>
Hiroshi Saito wrote:
> Hi.
>
> Yes, Good point:-). Then, I had other problems in the portion.
> I want to repeal the operation....( not accept key Enter)
> However, I think that the review of Dave is required for this.
>
> pgadmin/frm/frmEditGrid.cpp
> *** pgadmin/frm/frmEditGrid.cpp.orig 2007-07-30 09:34:37.000000000 +0000
> --- pgadmin/frm/frmEditGrid.cpp 2007-07-30 09:36:29.000000000 +0000
> ***************
> *** 644,649 ****
> --- 644,655 ----
> fileMenu->Enable(MNU_SAVE, true);
> editMenu->Enable(MNU_UNDO, true);
> }
> + else
> + {
> + if (keycode > WXK_SCROLL)
> + return;
> + }
> +
> break;
> }
> event.Skip();
I'm not clear what this is trying to do - can you describe the problem
some more?
(I'm not entirely sure what key WXK_SCROLL is - scroll lock perhaps? Or
one that is on a Japanese keyboard? (for those that haven't used one,
they have numerous extra keys and modes that won't be familiar)).
Regards, Dave.
Home |
Main Index |
Thread Index