Moin!
Obwohl die Close anweisung kommt, schließt Form6 nicht und bleibt unter form2 geöffnet...
folgender code:
Delphi-Quellcode:
procedure TForm1.Image1Click(Sender: TObject);
begin
Form6.Show;
Form2.Destroy;
Application.CreateForm(TForm2,Form2);
Form2.Show;
Form6.Close;
end;
die project1 sieht so aus:
Delphi-Quellcode:
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
Application.CreateForm(TForm6, Form6);
Application.Run;
end.
Fehlermeldungen gibt es keine...
Auch wenn ich im Form2.close ereignis Form6.close aufrufe, bewirkt das nichts...
thx & cya
dioony