Limits to use a custom function inside a FR5 report
FAlvarado
US/Mexico
I can use a simple function inside an FR5 report:
But when I try to use a more complex function I receive this error:
'=' expected
My custom function is very similar to https://www.fast-report.com/en/forum/index....?showuser=60142, but in Spanish (FloatToWords)
I can't create the function in the executable because I don't have the code, only the FR3 file.
So, what are my options?
Best Regards
Francisco Alvarado
function Test(AValue: String): String;
begin
Result := '123456' + AValue;
end;
procedure Memo3OnBeforePrint(Sender: TfrxComponent);
begin
Memo3.Text := Test('ABC');
end;
But when I try to use a more complex function I receive this error:
'=' expected
My custom function is very similar to https://www.fast-report.com/en/forum/index....?showuser=60142, but in Spanish (FloatToWords)
I can't create the function in the executable because I don't have the code, only the FR3 file.
So, what are my options?
Best Regards
Francisco Alvarado
Comments