Re: [Lazarus] Saving coordinates TComponentListForm

2008-10-11 Thread Marius
Graeme Geldenhuys wrote: > On Sat, Oct 11, 2008 at 4:06 PM, Marius <[EMAIL PROTECTED]> wrote: > >> How do i save and restore the coordinates + height/width for a IDE >> plugin. I already tried IDEDialogLayoutList.ApplyLayout and >> SaveLayout(Self) in the close. But this function only save and r

Re: [Lazarus] TAsyncProcess.OnTerminate doesn't fire

2008-10-11 Thread Tom Lisjac
That fixed both issues... OnTerminate is firing and I can turn off poWaitOnExit without seeing zombies in the process tree. Thanks Micha! -Tom >> The zombies are a minor issue, however. Knowing when the async process >> terminates is the part of the puzzle I don't have as yet. > > Ah you also ne

Re: [Lazarus] Saving coordinates TComponentListForm

2008-10-11 Thread Graeme Geldenhuys
On Sat, Oct 11, 2008 at 4:06 PM, Marius <[EMAIL PROTECTED]> wrote: > How do i save and restore the coordinates + height/width for a IDE > plugin. I already tried IDEDialogLayoutList.ApplyLayout and > SaveLayout(Self) in the close. But this function only save and restore > the width and height. > >

Re: [Lazarus] TAsyncProcess.OnTerminate doesn't fire

2008-10-11 Thread Micha Nelissen
Tom Lisjac wrote: > I haven't decided if I can live with this in the final version and may > have to give up on the async feature. Although zombies are harmless, > hundreds of them attached to the Lazarus parent may look a little > scary to tech aware end users. > > The zombies are a minor issue,

Re: [Lazarus] TAsyncProcess.OnTerminate doesn't fire

2008-10-11 Thread Tom Lisjac
On Sat, Oct 11, 2008 at 4:13 AM, Micha Nelissen <[EMAIL PROTECTED]> wrote: > Tom Lisjac wrote: >> The TAsyncProcess option set in the test code below executes and >> terminates without leaving a zombie process, but the OnTerminate event >> never fires. I've tried a variety of options including just

[Lazarus] Suggest change to packager/installpkgsetdlg.pas

2008-10-11 Thread Lukas Gradl
Hi! I find it disturbing that in the "installed Packages" Window the Lists are not sorted alphabetically and that the "available Packages" List jumps to the first entry after each entry. So I wrote a fix for that - attached a diff against svn 16958. As I'm not shure if the original, unsorted

Re: [Lazarus] install lazreport...

2008-10-11 Thread Jesus Reyes
--- El sáb 11-oct-08, Dians <[EMAIL PROTECTED]> escribió: > De:: Dians <[EMAIL PROTECTED]> > Asunto: [Lazarus] install lazreport... > A: lazarus@lazarus.freepascal.org > Fecha: sábado, 11 octubre, 2008, 8:38 am > i have this error when i wantto install lazreport, after > install > lasreport an

[Lazarus] Saving coordinates TComponentListForm

2008-10-11 Thread Marius
How do i save and restore the coordinates + height/width for a IDE plugin. I already tried IDEDialogLayoutList.ApplyLayout and SaveLayout(Self) in the close. But this function only save and restore the width and height. Is there anything what also saves the left + top coordinates? _

[Lazarus] install lazreport...

2008-10-11 Thread Dians
i have this error when i wantto install lazreport, after install lasreport and restart lazarus i got this error "the procedure entry point gdk_display_warp_pointer could not b located in the dynamic link library libgdk-win32-2.0-0.dll " . i use Lazarus-0.9.27-16946-fpc-2.2.3-20081010-win32.exe a

Re: [Lazarus] [PATCH/RFC] DBGrid: allow editing of lookup columns via picklist

2008-10-11 Thread Alexander Klenin
On Sat, Oct 11, 2008 at 21:15, Micha Nelissen <[EMAIL PROTECTED]> wrote: > Alexander Klenin wrote: >> Attached patch allows user to edit lookup fields in DBGrid, in a >> manner similar to Delphi. > > If no one responds within a few days, please add to the bug tracker so > that it won't be forgotten

Re: [Lazarus] [PATCH/RFC] DBGrid: allow editing of lookup columns via picklist

2008-10-11 Thread Micha Nelissen
Alexander Klenin wrote: > Attached patch allows user to edit lookup fields in DBGrid, in a > manner similar to Delphi. If no one responds within a few days, please add to the bug tracker so that it won't be forgotten. Micha ___ Lazarus mailing list Laz

Re: [Lazarus] TAsyncProcess.OnTerminate doesn't fire

2008-10-11 Thread Micha Nelissen
Tom Lisjac wrote: > The TAsyncProcess option set in the test code below executes and > terminates without leaving a zombie process, but the OnTerminate event > never fires. I've tried a variety of options including just > [poUsePipes,poStderrToOutPut] but have yet to see the OnTerminate > event. W