Also momentan mache ich es so:
in der
dpr alle Application.CreateForm
Delphi-Quellcode:
//Im Ereignis-Code des "START" Buttons:
ControlForm.Hide;
//das ist das "Begrüßungs-Form"
Form1.Show;
//hier soll es weitergehen
Form1.Left:=0;
Form1.Top:=0;
Form1.width:=1024;
Form1.height:=768;
tc:=GetTickcount;
repeat
Application.ProcessMessages;
until (GetTickcount-tc)>200;
MainUnit.MainLoop;
//hier werden einige GDI+ Grafikroutinen aufgerufen die auf dem Form1 zeichnen
...