Converting the Print Array Demo from VCL to FMX
Hi trying to understand FR FMX, how could I convert the Print Array from de FR VCL demos to FR FMX?
How would you do this in FMX?
procedure TForm1.frxReport1GetValue(VarName: String; var Value: Variant);
begin
if CompareText(VarName, 'element') = 0 then
Value := ar[ArrayDS.RecNo];
end;
How would you do this in FMX?
procedure TForm1.frxReport1GetValue(VarName: String; var Value: Variant);
begin
if CompareText(VarName, 'element') = 0 then
Value := ar[ArrayDS.RecNo];
end;