Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Sonstige Fragen zu Delphi (https://www.delphipraxis.net/19-sonstige-fragen-zu-delphi/)
-   -   Delphi Formular bei Programmstart ändern (https://www.delphipraxis.net/121000-formular-bei-programmstart-aendern.html)

kompi19 20. Sep 2008 07:52


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

Helmi 20. Sep 2008 07:57

Re: Formular bei Programmstart ändern
 
Hallo,

schau mal hier im Forum nach "SplashScreen"

Da dürftest massenhaft fündig werden.

kompi19 20. Sep 2008 08:03

Re: Formular bei Programmstart ändern
 
Delphi-Quellcode:
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.
Hier kann man das ja ändern. Danke.

rollstuhlfahrer 20. Sep 2008 10:08

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.

Fussball-Robby 20. Sep 2008 10:19

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 00:07 Uhr.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz