Using FR3 variables in script
Hi,
I've defined some variables in "variables tag" of FastReport but I can't access them from script, I can't access the system variables too like page, date etc. In Fr2.53 I can do it using [myVariable]
eg
if [page#] = 1 then ......
in FR3 when I drag and drop the variable from the variables tag to the script editor then appears something like this
<page>
but when I try to compile the script I get an error message
best regards
Gilvan Ferreira
I've defined some variables in "variables tag" of FastReport but I can't access them from script, I can't access the system variables too like page, date etc. In Fr2.53 I can do it using [myVariable]
eg
if [page#] = 1 then ......
in FR3 when I drag and drop the variable from the variables tag to the script editor then appears something like this
<page>
but when I try to compile the script I get an error message
best regards
Gilvan Ferreira
Comments
if <Page#> = 1 then ...
to a variable I receive an error message
<vartest> := 'hello word';
when I try to compile this I get this message "; expected"
best regards
Gilvan Ferreira
Thanks
Gilvan