Oder gleich die gesamten Button in ein Array packen
Delphi-Quellcode:
var Buttons: Array [1..64] of TButton
//Erzeugen
for i := 1 to 64 do
begin
Buttons[i]:=TButton.Create(self);
with Buttons[i] do
begin
Parent:=self;
Left:=i*Width;
Top:=0;
Caption:='43?';
end;
end;
//Caption ändern
for i := 1 to 64 do
Buttons[i].Caption:='42!'
Allerdings nur ratsam wenn sich die Position leicht festlegen lässt