Ich habe mal spaßenshalber 2 checkboxen auf eine form geknallt und folgendes erfolgreich ausprobiert, damit solltest du voran kommen wenn du meiner logik folgen kannst:
Delphi-Quellcode:
procedure TForm1.FormCreate(Sender: TObject);
var
i: Integer;
Component: TComponent;
begin
for I := 1 to 2 do
begin
Component := FindComponent('CheckBox' + IntToStr(I));
if ((Component <> nil) and (Component is TCheckBox)) then
TCheckBox(Component).Caption := 'Text ' + IntToStr(I);
end;
end;
Viel Spass damit!