![]() |
Formular bei Programmstart ändern
Halialo zusammen...
Wieder habe ich eine Frage zu Delphi 5: Ich programmiere momentan ein Mehrformularprojekt und habe erstmal die wichtigen Formulare programmiert mit den entsprechenden Inhalten. Jetzt möchte ich noch eine Schöne Willkommensseite haben. Wie kriege ich ein anderes Formular als startformular? MfG |
Re: Formular bei Programmstart ändern
Hallo,
schau mal hier im Forum nach "SplashScreen" Da dürftest massenhaft fündig werden. |
Re: Formular bei Programmstart ändern
Delphi-Quellcode:
Hier kann man das ja ändern. Danke.
program Project1;
uses Forms, Unit1 in 'Unit1.pas' {Form1}, Unit2 in 'Unit2.pas' {Form2}, Unit3 in 'Unit3.pas' {Form3}, Unit4 in 'Unit4.pas' {Form4}; {$R *.RES} begin Application.Initialize; Application.CreateForm(TForm1, Form1); Application.CreateForm(TForm2, Form2); Application.CreateForm(TForm3, Form3); Application.CreateForm(TForm4, Form4); Application.Run; end. |
Re: Formular bei Programmstart ändern
ähm. Wäre es nicht schön, wenn du mal danach suchen würdest, wie man das macht? Deinen Code ändert dir hier niemand.
|
Re: Formular bei Programmstart ändern
Projekt -> Optionen -> Reiter Formulare -> Hauptformular auswählen
Edit: Oh, nach dem Hauptformular war wohl garnicht gefragt, sorry :? |
Alle Zeitangaben in WEZ +1. Es ist jetzt 07:19 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz