Hi,
bei folgendem Code wird das Edit mit einer zu großen Breite erstellt, warum ? Wenn ich das ohne dynamisches Erstellen erledige, klappt alles.
Delphi-Quellcode:
fPanel := TPanel.Create(Self);
with fPanel do
begin
Parent := TWinControl(Self);
Align := alClient;
Anchors := [akTop,akLeft,akRight,akBottom];
Show;
end;
fEdit := TEdit.Create(fPanel);
with fEdit do
begin
Parent := fPanel;
Left := 212;
Top := (24*i)+2;
Width := 10;
Anchors := [akTop,akLeft,akRight];
Text := '';
Show;
end;