anfangen
FormSplashScreen: = TFormSplashScreen.Create (Anwendung);
Versuch
FormSplashScreen.Show;
Application.Initialize;
FormSplashScreen.Update;
Schlaf (3000);
Application.CreateForm (TFormMain, FormMain);
Application.CreateForm (TFormOptions, FormOptions);
Application.CreateForm (TForm1, Form1);
schließlich
FormSplashScreen.Hide;
FormSplashScreen.Free;
Ende;
Application.Run;
Ende.
|