Re: [Lazarus] What GetChildParent does in designer and reader?

2014-03-05 Thread Fabio Luis Girardi
But I'll keep trying to implement this. Em 04/03/2014 21:34, Fabio Luis Girardi fluisgira...@gmail.com escreveu: I'll try this approach. At the moment this is a good workaround... :) Em 04/03/2014 21:22, luiz americo pereira camara luiz...@oi.com.br escreveu: Hi Fabio, I'd like to share

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-03-04 Thread Fabio Luis Girardi
mytesthelper.pas(40,20) Error: identifier idents no member RemoveHandlerComponentAdded Lazarus 1.3 2014-03-03 18:56 GMT-03:00 Mattias Gaertner nc-gaert...@netcologne.de: On Mon, 3 Mar 2014 16:47:30 -0300 Fabio Luis Girardi fluisgira...@gmail.com wrote: Hi!! Attached the code of my

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-03-04 Thread Fabio Luis Girardi
Maybe RemoveHandlerAddClicked is a replacement? 2014-03-04 9:43 GMT-03:00 Fabio Luis Girardi fluisgira...@gmail.com: mytesthelper.pas(40,20) Error: identifier idents no member RemoveHandlerComponentAdded Lazarus 1.3 2014-03-03 18:56 GMT-03:00 Mattias Gaertner nc-gaert...@netcologne.de:

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-03-04 Thread Fabio Luis Girardi
Hi Mattias!! This solution don't work too. 2014-03-04 9:46 GMT-03:00 Fabio Luis Girardi fluisgira...@gmail.com: Maybe RemoveHandlerAddClicked is a replacement? 2014-03-04 9:43 GMT-03:00 Fabio Luis Girardi fluisgira...@gmail.com: mytesthelper.pas(40,20) Error: identifier idents no member

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-03-04 Thread Mattias Gaertner
On Tue, 4 Mar 2014 09:43:50 -0300 Fabio Luis Girardi fluisgira...@gmail.com wrote: mytesthelper.pas(40,20) Error: identifier idents no member RemoveHandlerComponentAdded That was a typo. It should be RemoveHandlerAddClicked. Mattias -- ___ Lazarus

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-03-04 Thread Mattias Gaertner
On Tue, 4 Mar 2014 09:46:34 -0300 Fabio Luis Girardi fluisgira...@gmail.com wrote: Maybe RemoveHandlerAddClicked is a replacement? Yes. Mattias -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-03-04 Thread luiz americo pereira camara
Hi Fabio, I'd like to share how i implemented similar behavior of TDbCtrlGrid, so maybe you can be interested. If not just ignore. First i create a TFrame in Lazarus put the controls that i need to be there. In the control i want to display the instances of the frame i create at runtime

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-03-04 Thread Fabio Luis Girardi
I'll try this approach. At the moment this is a good workaround... :) Em 04/03/2014 21:22, luiz americo pereira camara luiz...@oi.com.br escreveu: Hi Fabio, I'd like to share how i implemented similar behavior of TDbCtrlGrid, so maybe you can be interested. If not just ignore. First i

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-03-03 Thread Fabio Luis Girardi
Hi Mattias!! Revision 44299 is related with this? The best regards 2014-02-28 7:56 GMT-03:00 Mattias Gaertner nc-gaert...@netcologne.de: On Fri, 28 Feb 2014 01:47:38 +0100 Hans-Peter Diettrich drdiettri...@aol.com wrote: [...] Component DragDrop operations There is no drag when

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-03-03 Thread Fabio Luis Girardi
Hi!! Attached the code of my prototype of TDBCtrlGrid. It works as expected on Delphi (except the function GetDesignerDropTarget that don't exists on Delphi TWinControl), but it don't works as expected on Lazarus. 2014-03-03 10:17 GMT-03:00 Fabio Luis Girardi fluisgira...@gmail.com: Hi

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-03-03 Thread Mattias Gaertner
On Mon, 3 Mar 2014 16:47:30 -0300 Fabio Luis Girardi fluisgira...@gmail.com wrote: Hi!! Attached the code of my prototype of TDBCtrlGrid. It works as expected on Delphi (except the function GetDesignerDropTarget that don't exists on Delphi TWinControl), but it don't works as expected on

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-02-28 Thread Mattias Gaertner
On Fri, 28 Feb 2014 01:47:38 +0100 Hans-Peter Diettrich drdiettri...@aol.com wrote: [...] Component DragDrop operations There is no drag when adding a component to a form. Mattias -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

[Lazarus] What GetChildParent does in designer and reader?

2014-02-27 Thread Fabio Luis Girardi
Thanks. -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-02-27 Thread Mattias Gaertner
In designer: nothing. In reader: it overrides the parent-child nesting of the stream. I don't know an example. Mattias -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-02-27 Thread Fabio Luis Girardi
So, to resolve some issues to make a TDBCtrlGrid for lazarus, designer should use this function to determine the real parent of a child control? 2014-02-27 7:59 GMT-03:00 Mattias Gaertner nc-gaert...@netcologne.de: In designer: nothing. In reader: it overrides the parent-child nesting of the

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-02-27 Thread Mattias Gaertner
On Thu, 27 Feb 2014 09:07:49 -0300 Fabio Luis Girardi fluisgira...@gmail.com wrote: So, to resolve some issues to make a TDBCtrlGrid for lazarus, designer should use this function to determine the real parent of a child control? Let me rephrase: No Lazarus component has ever used this

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-02-27 Thread Fabio Luis Girardi
2014-02-27 9:24 GMT-03:00 Mattias Gaertner nc-gaert...@netcologne.de: On Thu, 27 Feb 2014 09:07:49 -0300 Fabio Luis Girardi fluisgira...@gmail.com wrote: So, to resolve some issues to make a TDBCtrlGrid for lazarus, designer should use this function to determine the real parent of a child

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-02-27 Thread Mattias Gaertner
On Thu, 27 Feb 2014 09:32:31 -0300 Fabio Luis Girardi fluisgira...@gmail.com wrote: [...] No. Lazarus allow me to add a child to my control, but I want redirect these childs to use a Panel inside of my TCustomControl as their parent. I see. There is no function yet, to redirect designer drops.

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-02-27 Thread Fabio Luis Girardi
2014-02-27 10:07 GMT-03:00 Mattias Gaertner nc-gaert...@netcologne.de: On Thu, 27 Feb 2014 09:32:31 -0300 Fabio Luis Girardi fluisgira...@gmail.com wrote: [...] No. Lazarus allow me to add a child to my control, but I want redirect these childs to use a Panel inside of my TCustomControl

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-02-27 Thread Mattias Gaertner
On Thu, 27 Feb 2014 10:26:04 -0300 Fabio Luis Girardi fluisgira...@gmail.com wrote: 2014-02-27 10:07 GMT-03:00 Mattias Gaertner nc-gaert...@netcologne.de: On Thu, 27 Feb 2014 09:32:31 -0300 Fabio Luis Girardi fluisgira...@gmail.com wrote: [...] No. Lazarus allow me to add a child to

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-02-27 Thread Fabio Luis Girardi
2014-02-27 11:14 GMT-03:00 Mattias Gaertner nc-gaert...@netcologne.de: On Thu, 27 Feb 2014 10:26:04 -0300 Fabio Luis Girardi fluisgira...@gmail.com wrote: 2014-02-27 10:07 GMT-03:00 Mattias Gaertner nc-gaert...@netcologne.de: On Thu, 27 Feb 2014 09:32:31 -0300 Fabio Luis Girardi

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-02-27 Thread Antonio Fortuny
Voilà, Tous les fichiers troisième génération sont en place selo les noms: pays_job.csv (2007 pour la France) Les nombres de lignes par fichier correspond à la seconde version J'ai sondé quelques fichiers: ils sont identiques entre versions 2 et 3. et sauf la Belgique job 2548 déjà mis. A.

Re: [Lazarus] What GetChildParent does in designer and reader?

2014-02-27 Thread Hans-Peter Diettrich
Mattias Gaertner schrieb: On Thu, 27 Feb 2014 10:26:04 -0300 Fabio Luis Girardi fluisgira...@gmail.com wrote: 2014-02-27 10:07 GMT-03:00 Mattias Gaertner nc-gaert...@netcologne.de: On Thu, 27 Feb 2014 09:32:31 -0300 Fabio Luis Girardi fluisgira...@gmail.com wrote: [...] No. Lazarus allow