Jump to content
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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×