Verständnisfrage:
das bedeutet doch, ich kann auch so etwas machen:
Delphi-Quellcode:
begin
frmSplash := TfrmSplash.Create(Application);
frmSplash.Show;
frmSplash.Refresh;
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
frmSplash.Close;
end.
(also ich meine wenn ich das erstmal ohne Timer mache)
Ich will halt nicht nur abschreiben, sondern auch nachvollziehen