Re: [pgadmin-hackers] Paste rows patch

2006-05-10 Thread Dave Page
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Edward Di Geronimo Jr. > Sent: 10 May 2006 16:41 > To: pgadmin-hackers@postgresql.org > Subject: Re: [pgadmin-hackers] Paste rows patch > > Quoting Dave Page

Re: [pgadmin-hackers] Paste rows patch

2006-05-10 Thread Edward Di Geronimo Jr.
Quoting Dave Page : Nice - that works. Unfortunately I found another problem - the serial column doesn't seem to work I suspect because you are looking for columns that are PGOID_TYPE_SERIAL or PGOID_TYPE_SERIAL8, however they actually get seen as int4's or int8's I believe. I'm testing with 8.1

Re: [pgadmin-hackers] Paste rows patch

2006-05-10 Thread Dave Page
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Edward Di Geronimo Jr. > Sent: 10 May 2006 00:43 > To: pgadmin-hackers@postgresql.org > Subject: Re: [pgadmin-hackers] Paste rows patch > > Quoting Dave Page : >

Re: [pgadmin-hackers] Paste rows patch

2006-05-09 Thread Edward Di Geronimo Jr.
Quoting Dave Page : We enable/disable the save button on the entry/exit of a cell - see frmEditGrid::OnEditorShown() & frmEDitGrid::OnSave(). Does that look robust enough to use to set a flag? Got a solution. I set a flag in OnEditorShown, and trapped the editor hidden event to clear it. Her

Re: [pgadmin-hackers] Paste rows patch

2006-05-09 Thread Dave Page
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Edward Di Geronimo Jr. > Sent: 09 May 2006 15:00 > To: pgadmin-hackers@postgresql.org > Subject: Re: [pgadmin-hackers] Paste rows patch > > Quoting Dave Page : >

Re: [pgadmin-hackers] Paste rows patch

2006-05-09 Thread Edward Di Geronimo Jr.
Quoting Dave Page : It's looking much better, however, I still think that if the cursor is actually active in a cell then the paste should go to that cell, and only in other cases to the new row. On Windows, the only way to do that is ctrl-v or right-click->paste. The paste button and ctrl-v sho

Re: [pgadmin-hackers] Paste rows patch

2006-05-09 Thread Dave Page
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Edward Di Geronimo Jr. > Sent: 09 May 2006 07:24 > To: pgadmin-hackers@postgresql.org > Subject: [pgadmin-hackers] Paste rows patch > > Here's a fully functional version of my row pasting patch.