Hallo!
ich habe ein mir unerklärliches Problem.
In meinem aktuellen Projekt nutze ich mehrere Formulare.
Ein Formular für die Anmeldung und zwei weitere Formulare, die vom Formular "Anmeldung" aus angewählt werden können.
Der Projektcode sieht folgendermaßen aus:
Code:
program Fragesystem2;
uses
Forms,
Unit_Anmeldung in 'Unit_Anmeldung.pas' {frmAnmeldung},
UnitAdmintool in 'UnitForm2.pas' {Form2},
Unit_Global in 'UnitForm3.pas' {Form3}
Unit_Splash in 'Unit_Splash.pas' {frmSplash}
{$R *.RES}
begin
Application.Initialize;
with TfrmSplash.Create(nil) do
try
progressbar1.Max := 100;
Show;
Update;
Progressbar1.StepBy(25);
Application.HelpFile := '';
Application.CreateForm(TfrmAnmeldung, frmAnmeldung); //HF
Progressbar1.StepBy(25);
Application.CreateForm(TForm2, Form2);
Progressbar1.StepBy(25);
Application.CreateForm(TForm3, Form3);
Progressbar1.StepBy(25);
finally
Free;
end;
Application.Run;
end.
Jetzt mein Problem:
Aus irgendeinem Grund wird Form2 vor der Anmeldung angezeigt, obwohl es sonst immer ohne Probleme funktionierte.
Wie kann das sein?
Gruß
Tim
Das wirksamste Mittel gegen Kopfschmerzen ist die Guillotine.
-
"Der Kunde ist nicht König, sondern Gott. Könige sind Menschen und können daher Fehler machen - ein Gott aber macht keine Fehler" - Der Gründer der Matsushita Electric Industries