Jump to content
Registration disabled at the moment Read more... ×
BradF

How to modify a FastReport field from Delphi Code

Recommended Posts

I would like to change the value of some Fast Report fields from my code. I use to do this all the time with Quick Reports and D5 but can't seem to get anything to work with Fast Reports and Community Edition10.3.

Share this post


Link to post

I would use variables.

Create a variable and place it in a place, then

with F.frxReport do begin
	...
    Variables.Variables['my_var'] := my_value;
    ...
end;

There is a way to edit textarea's but never used that.

Edited by Ruslan

Share this post


Link to post

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×