internetzs
internetzs
About
- Username
- internetzs
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
try this: frxReport1.Variables.Variables := '''line1''#13+''line2'';';
-
I found that when frxReport.DataSet has a value, it will report that error. I clear frxReport.DataSet value, it is ok. Why?
-
I use delphi code: Report.Variables:= 'abc'; // error Report.Variables.Items[1].Value:= 'abc'; // error But, I use following code, it is ok: procedure TfrmMain.frxReport1GetValue(const VarName: String; var Value: Variant);…