Dafür ist Loaded zuständig. Es wird einmalig nach dem Einlesen aller
DFM ausgeführt. Quasi nach dem Create aber vor dem Show und nur exakt einmal beim Programmstart.
Siehe
System.Classes.TComponent.Loaded, das dort beschriebene trifft meiner Meinung nach genau Deine Anforderungen.
Zitat:
When the streaming system loads a form or data module from its form file, it first constructs the form component by calling its constructor, then reads its property values from the form file. After reading all the property values for all the components, the streaming system calls the Loaded methods of each component in the order the components were created. This gives the components a chance to initialize any data that depends on the values of other components or other parts of itself.
Der letzte Satz dieser Beschreibung entspricht doch genau Deiner Anforderung. Und natürlich kannst Du dort auch noch weitere Formulare, ... erstellen, die nicht automatisch (über die
dpr o. ä.) erstellt wurden.
Dein im obigen Beispiel im TfrmMain.FormActivate aufgeführter Quelltext, sollte im TfrmMain.Loaded genau das machen, was Du möchtest und erwartest.