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
>

Comments

  • edited 6:11AM
    Finally found it

    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)
  • gpigpi
    edited 6:11AM
    You may use report or script variables:

    frxReport1.Variables.Variables := 1;
    frxReport1.Variables.Variables := '''' + 'test' + '''';
    frxReport1.Script.Variables := 'test';
  • edited 6:11AM
    gpi wrote: »
    You may use report or script variables:

    frxReport1.Variables.Variables := 1;
    frxReport1.Variables.Variables := '''' + 'test' + '''';
    frxReport1.Script.Variables := 'test';

    Thanks
    >

Leave a Comment