wird das nicht problematisch wenn du du versuchst
aForm immer wieder neu zu erstellen, obwohls schon existiert?
Delphi-Quellcode:
var myform:array of TForm;
begin
setlength(myform,strtoint(edit1.text));
for i := 0 to StrToInt(Edit1.Text) - 1 do
begin
myform[i] := TForm.Create(nil);
myform[i] := aForm.Show;
end;
end;
end;
gruß Minz