Oder in der ProjectDatei das ganze so lösen
Delphi-Quellcode:
[...]
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
Application.CreateForm(TForm3, Form3);
Application.CreateForm(TForm4, Form4);
Form1.DoTheThingsYouCouldNotDoInONCREATEofForm1;
[...]
wobei ich selbst das ganze in der Regel so löse das ich das im OnCreate von Form4 mache. Mit den 200 ms verzögerung ist keine gute Lösung, wenn der Rechner mal bischen ausgelastet ist dann kann es recht schnell vorkommen das 200 ms nicht reichen.