modify report fields by delphi
Hi, I'm just start with FR. How can I set report fields for example Memo1 in ReportTitle from Delphi? I tried to do this but it doesn't work:
Button_Preview.onClick -> frxReport1.ReportTitle1.Memo1 := 'daily report from ' + FormatDateTime('dd.mm.yyyy', now);
Comments
Try TfrxMemoView(frxReport.FindObject('Memo1')).Text := 'daily report from ' + FormatDateTime('dd.mm.yyyy', now);