Default Avatar

plwo

plwo

About

Username
plwo
Joined
Visits
0
Last Active
Roles
Members

Comments

  • Problem solved: The name has to be defined in AverpDesigner in Objectinspector/FormShow and not in the FastReport Designer. I put following code in FormShow and it worked: q_rep1.open(); frxReport1.ReportOptions.Name := 'Name_'+AsString(q_re…
  • gpi wrote on Dec 17 2014, 06:07 AM: Try to call Report.Reportoptions.Name := ''''+'Auftragsbestaetigung_'++''''; in the main procedure of the report script i tried it in the main, but it still does not work. Or, to say it correctly, the renam…
  • gpi wrote: » Use custom user function and change Report.ReportOptions.Name in the Delphi's code What do you mean in Delphis code? You mean before FR is starting, i have to change it in the Software which calls the FastReport (in my case AV…
  • i now definitaly found the right way to change the name of the document: procedure frxReport1OnReportPrint(Sender: TfrxComponent); begin Showmessage(Report.Reportoptions.Name); Report.Reportoptions.Name := ''''+'Auftragsbestaetigung_'++''''; …