add value to variasbles Delphi XE2
hello Forum
I need your help
I work in delphi XE2 and fastreport 4.5
i need add value to variables to fastreport
i have edit1.text, edit2.text and edit3.text
I need insert in the line to variable1
FrxReport.variables.variables:=quotedstr(edit1.text);
FrxReport.variables.variables:=quotedstr(edit2.text);
FrxReport.variables.variables:=quotedstr(edit3.text);
[img]style_emoticons/<#EMO_DIR#>/sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" /> Not Found FrxReport.variables.variables.line.add(quotedstr(edit3.text)); Not Found I need 3 values in 1 variable regard[/img]
I need your help
I work in delphi XE2 and fastreport 4.5
i need add value to variables to fastreport
i have edit1.text, edit2.text and edit3.text
I need insert in the line to variable1
FrxReport.variables.variables:=quotedstr(edit1.text);
FrxReport.variables.variables:=quotedstr(edit2.text);
FrxReport.variables.variables:=quotedstr(edit3.text);
[img]style_emoticons/<#EMO_DIR#>/sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" /> Not Found FrxReport.variables.variables.line.add(quotedstr(edit3.text)); Not Found I need 3 values in 1 variable regard[/img]
Comments
frxReport.Script.variables := edit1.text + #13#10 + edit2.text + #13#10 + edit3.text;