Re: [Lazarus] IDE problems when using record helper types

2012-06-29 Thread Bernd
2012/6/28 Mattias Gaertner : > At the moment the codetools simply skips the "helper of" keywords. > > Nothing was implemented. Should I create a feature request or is it already in the pipeline? I assume that since the codetools can already deal with modeswitch autoderef it is now only a matter o

Re: [Lazarus] IDE more ...

2012-06-29 Thread Sven Barth
Am 29.06.2012 17:25 schrieb "Hans-Peter Diettrich" : > > leledumbo schrieb: > >> It's known incomplete persistence implementation of anchordockingdsgn >> package, which is a show stopper for me as well to use that docking >> solution. I currently use easydockmgrdsgn package which despite it doesn't

Re: [Lazarus] IDE more ...

2012-06-29 Thread Hans-Peter Diettrich
leledumbo schrieb: It's known incomplete persistence implementation of anchordockingdsgn package, which is a show stopper for me as well to use that docking solution. I currently use easydockmgrdsgn package which despite it doesn't look as beautiful as anchordockingdsgn, it works, and I can dock

Re: [Lazarus] IDE more ...

2012-06-29 Thread leledumbo
It's known incomplete persistence implementation of anchordockingdsgn package, which is a show stopper for me as well to use that docking solution. I currently use easydockmgrdsgn package which despite it doesn't look as beautiful as anchordockingdsgn, it works, and I can dock every windows I want

[Lazarus] IDE more ...

2012-06-29 Thread Antonio Fortuny
Hi folks. I'm still fully committed to use Lazarus and FPC and I have another behaviour which could be annoyinf too. I've setup the IDE to adopt the docked windows functionnality. I've installed the anchcordocking package and everything runs fine. Now I have almost the same front end with Laza

Re: [Lazarus] IDE

2012-06-29 Thread Antonio Fortuny
Le 27/06/2012 17:31, Mattias Gaertner a écrit : On Wed, 27 Jun 2012 16:08:00 +0200 Antonio Fortuny wrote: Le 27/06/2012 15:07, Mattias Gaertner a écrit : On Wed, 27 Jun 2012 14:24:20 +0200 Antonio Fortuny wrote: Hi all. I don't know whether this is a bug or not but it is annoying anyway

Re: [Lazarus] Manually creating a form

2012-06-29 Thread Koenraad Lelong
On 29-06-12 11:22, Antonio Fortuny wrote: upper:=10; for i:=0 to 4 do begin form2.Height:=form2.height+25; edits[i]:=Tedit.Create(self); edits[i].Parent:=form2; edits[i].Parent:=Self; That simple ! Thanks. It works now. Koenraad --

Re: [Lazarus] Manually creating a form

2012-06-29 Thread zeljko
On Friday 29 of June 2012 11:20:35 zeljko wrote: > On Friday 29 of June 2012 11:16:06 Koenraad Lelong wrote: > > Hi, > > > > I'm trying to manually create a form and in it's OnCreate event populate > > it with controls. But I'm doing somehing wrong. > > > > This is my creating sequence : > > fo

Re: [Lazarus] Manually creating a form

2012-06-29 Thread Antonio Fortuny
Le 29/06/2012 11:16, Koenraad Lelong a écrit : Hi, I'm trying to manually create a form and in it's OnCreate event populate it with controls. But I'm doing somehing wrong. This is my creating sequence : form2:=Tform2.Create(nil); form2.ShowModal; Form2.Destroy; Nothing special I think.

Re: [Lazarus] Manually creating a form

2012-06-29 Thread zeljko
On Friday 29 of June 2012 11:16:06 Koenraad Lelong wrote: > Hi, > > I'm trying to manually create a form and in it's OnCreate event populate > it with controls. But I'm doing somehing wrong. > This is my creating sequence : > > form2:=Tform2.Create(nil); > form2.ShowModal; > Form2.Destroy;

[Lazarus] Manually creating a form

2012-06-29 Thread Koenraad Lelong
Hi, I'm trying to manually create a form and in it's OnCreate event populate it with controls. But I'm doing somehing wrong. This is my creating sequence : form2:=Tform2.Create(nil); form2.ShowModal; Form2.Destroy; Nothing special I think. This is a sample of the create-code : procedure