Default Avatar

mcinwg

mcinwg

About

Username
mcinwg
Joined
Visits
1
Last Active
Roles
Members

Comments

  • If anyone's interested, I have managed to solve the problem myself ... This code needs to go in the Delphi application itself ... procedure TMyForm.frxReportBeforePrint(Sender: TfrxReportComponent); begin if Sender.Name = 'Chart1' then Tfrx…
  • See my problem entitled 'Scripting error' and the help I had in solving it. I can get the number printed through Delphi in 'procedure frxReportAfterPrintReport(Sender)' by reading 'frxReport.PrintOptions.Copies' or from my report variable , which …
  • Thanks to both respondees - gpi's code works as I intended it. It's rather counter-intuitive though : the FR-Object Inspector contains 'frxReport: TfrxReport' and all the procedures are named 'frxReport...' - so why do you have to use 'Report.Pri…
  • Mick.pl wrote: » Mick.pl wrote: » ... I wonder if there is a list of predefined colors in FastReport - like clred, clblue, clgreen etc. ? ... Click on any Memo on your report and look at Object Inspector - Color property of that Memo. …
  • gordk wrote: » it works fine for me in that version also correct syntax no [] if value = 1 then Memo.Font.Style := fsBold; Somewhat non-Delphi syntax, but it does work. However, how do you remove the fsBold (ie: Font.Style := [] in Del…