Hallo,
Delphi-Quellcode:
var
Form: TForm_Adressing; // lokale Variable
begin
Form:= TForm_Adressing.Create(NIL);
try
Form.ShowModal;
finally
FreeAndNIL(Form);
// oder
// Form.Free; Form:= NIL;
end;
Das von Delphi automatisch als globale Variable erstellte
form_adressing
läßt du gleich ganz liegen.
Heiko