Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
Delphi 12 Athens
|
Re: form 2mal starten
10. Nov 2004, 10:46
Wenn Dein Formular TForm2 ist, dann so:
Delphi-Quellcode:
procedure ShowForm2;
begin
if Form2 = nil then
Form2 := TForm2.Create(Application);
Form2.Show;
Form2.BringToFront;
end;
... ...
Daniel Lizbeth Ich bin nicht zurück, ich tue nur so
|