Pass params
Hi.
With fastreport 3 how can i pass value to query params at runtime such as
adoquery1.params[0].value := 'Good'
thank's
With fastreport 3 how can i pass value to query params at runtime such as
adoquery1.params[0].value := 'Good'
thank's
Comments
q1.close;
q1.params[0].value := <itemcode>;
q1.open;
then on the delphi event, u can put code like this:
fr.Script.Clear;
fr.Script.Variables := 1039;
hope this help.