ich mach's immer so:
in den Hauptteil schribst du:
Delphi-Quellcode:
begin
SplashScreen1 := TSplashScreen1.Create(Application); //TSplashScreen1 ist das Splashscreen-Formular
SplashScreen1.Show;
SplashScreen1.Update;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TAboutBox, AboutBox);
SplashScreen1.Free;
Application.Run;
end.
und in oncreate von form1 schribst du:
sleep(3000);