var
  aa:TQrLabel;
  bb:TQrText;
begin
  aa := TQrLabel.Create(Form1);
  bb := TQrText.Create(Form1);
  for i:=0 to Table1.FieldCount do
  begin
    with aa do
    begin
      name:='aaQrLabel'+IntTostr(i);
    end;
    with bb do
    begin
      name:='bbQrText'+IntTostr(i);
    end;
  end;
end;