Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.229 Beiträge
Delphi 12 Athens
|
AW: Problem mit Tform und free
28. Okt 2010, 08:09
Delphi-Quellcode:
var Form: TForm_Adressing; // lokale Variable
Form := TForm_Adressing.Create(NIL);
try
Form.ShowModal;
finally
Form.Free;
end;
FreeAndNil ist hier eigentlich nicht nötig
Delphi-Quellcode:
with TForm_Adressing.Create(NIL) do
try
ShowModal;
finally
Free;
end;
$2B or not $2B
|