Re: [Lazarus] howto change the order the components of a Form are created?

2015-04-09 Thread John Landmesser
On 09.04.2015 20:27, Howard Page-Clark wrote: Project Options lets you order the creation of auto-created forms, but it does not handle other objects. Can you not dynamically create these two objects in order like this? procedure TForm1.FormCreate(Sender: TObject); begin

[Lazarus] howto change the order the components of a Form are created?

2015-04-09 Thread John Landmesser
from Delphi i know there is a editor to change the order in which objects of the Application are created: I have a IniPropStorage and that has to be created before a FileListView. Searched the IDE, i know its there, but i can't find it! Thank you! --

Re: [Lazarus] howto change the order the components of a Form are created?

2015-04-09 Thread Howard Page-Clark
On 09/04/2015 18:30, John Landmesser wrote: from Delphi i know there is a editor to change the order in which objects of the Application are created: I have a IniPropStorage and that has to be created before a FileListView. Searched the IDE, i know its there, but i can't find it! Project