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 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
  FIniPropStorage:=TIniPropStorage.Create(Self);
  //  with FIniPropStorage do ... etc.

  FFilelistbox:=TFileListBox.Create(Self);
  // with FFilelistbox do ...
end;

Howard


---
This email has been checked for viruses by Avast antivirus software.
http://www.avast.com


--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Reply via email to