ja klar, hier die Erstellung:
Delphi-Quellcode:
begin
for x := 0 to 29 do begin
if x mod 10 = 0 then y := 40
else inc (y, 40);
myedit := TEdit.Create(nil);
myedit.Parent := GroupBox1;
myedit.Left := x div 10 * 200;
myedit.Top := y;
myedit.Height := 20;
myedit.Width := 80;
myedit.Name := 'bst1name'+InttoStr(x);
myedit.Text := 'bst1name'+InttoStr(x);
end;
end;
[edit=Daniel B]Delphi-Tags korrigiert. Mfg, Daniel B[/edit]