Thema
:
Delphi
Befehl um eine neue Form in einem Projekt zu öffnen???
Einzelnen Beitrag anzeigen
Dannyboy
Registriert seit: 4. Aug 2003
Ort: Delphi-Heaven
418 Beiträge
Delphi 7 Personal
#
5
Re: Befehl um eine neue Form in einem Projekt zu öffnen???
25. Sep 2003, 14:37
Hallo Christian2K,
Mach' mal Folgendes:
markieren
Delphi-Quellcode:
Var
NeueForm : TForm;
Procedure
TForm1.blablabla
begin
NeueForm:= TForm1.create(self);
// Erstellt Dir die neue Form
NeueForm.show;
// Zeigt Dir die neue Form an
end
;
Zitat
Dannyboy
Öffentliches Profil ansehen
Mehr Beiträge von Dannyboy finden