Does FastReport have an equivalent of Rave report parameters
I just used the rave convertor, but I have some report parameters. I would like to know if there is something similar in fastreport.
Thanks
Thanks
Comments
I needed to send some text direct from delphi to the report.
It is a sales report and i needed to add at the page header the the parameters (salesman number-from/date/to/date/-and other thing, but printed just once at the first page). But I did not wanted to store these data on a DB.
You need a lot of work with manuals and help. By the way, help is not working at the report designer (5.0.8)
frxReport1.Variables.Variables := 1;
frxReport1.Variables.Variables := '''' + 'test' + '''';
frxReport1.Script.Variables := 'test';
Thanks