Einzelnen Beitrag anzeigen

Dagon

Registriert seit: 13. Jul 2003
505 Beiträge
 
Delphi 7 Professional
 
#4

Re: Form6 am start vor Form1 bringen ?!

  Alt 16. Aug 2003, 15:08
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);
  Mit Zitat antworten Zitat