Default Avatar

Luis Enrique

Luis Enrique

About

Username
Luis Enrique
Joined
Visits
30
Last Active
Roles
Members

Comments

  • I checked frxReport's EngineOptions Double Pass and it seems to work now. https://forum.fast-report.com/en/uploads/719/ZRIOR4MIFGHF.png in addition, KeepTogether from GroupHeader and KeepHeader, KeepFooter and KeepTogether from MasterData
  • Does the problem occur on the development computer? I mean, depending on the font you are using, if the font used is not installed on the computer where the pdf was opened, this could be the cause of the problem
  • procedure TrelTeste.RelatorioBeforePrint(Sender: TfrxReportComponent); var   NomeArquivo: String;   Stream: TMemoryStream; begin   inherited;   if Sender.Name = 'Assinatura' then     begin     Stream := TMemoryStream.Create;     try       NomeArqui…
  • Maybe you can save the grouping information into a variable and use that variable to show the information in the page footer. You can do that in the FR's internal script or using the OnBeforePrint and OnGetValue of the frxReport
  • https://forum.fast-report.com/en/uploads/982/GHN2DIQYZ9PJ.png This work for me. Set the Align property of the label ti baWidth. When the image on the right is visible the label stop there, when is not visible it use all the width of the band. Anoth…