Default Avatar

CaymanPort

CaymanPort

About

Username
CaymanPort
Joined
Visits
0
Last Active
Roles
Members

Comments

  • gordk wrote: » if the data in the child bands subreports takes more than the space available set the allowsplit property to true I tried that but it made no difference. Anything else I could try?
  • gpi wrote: » Set Child2.Stretched to True Sorry for the delay in getting back to you but yesterday was a holiday here. Anyway, I tried your suggestion and that worked great so long as the sub-reports did not make the report exceed 1 page…
  • gpi wrote: » Attach your report template (fr3). Your screenshot is useless I have attached the report template and SQL to create the underlying tables/data.
  • gpi wrote: » Set Subreport.PrintOnParent = true Ok, I tried it out but setting the PrintOnParent causes all sorts of alignment issues. Especially when the sub-report exceeds one page:
  • gpi wrote: » Set Subreport.PrintOnParent = true Sorry, pulled on to something else. I will try this out shortly.
  • gpi wrote: » Try to add TfrxMemoView with frame to Child band, set TfrxMemoView.StretchMode to smMaxHeight, TfrxMemoView.Width = Child.Width I had tried that but the frame does not expand properly:
  • gordk wrote: » a band itself is not a printed object only the contents are printed the method would be to add a memo object set to the the band width send to the back and turn on the framelines you want Ok, but how can I do just the outsid…
  • gpi wrote: » Use Format function procedure txCreditLimitOnBeforePrint(Sender: TfrxComponent); begin if = 1 then txCreditLimit.Text := 'Credit Limit: ' + Format('%2.2m', []) else txCreditLimit.Text := ''; end; Ahhh! Ok... I thoug…
  • gpi wrote: » Try to add empty child band to masterdata band Unfortunately, that won't work as the child band will appear after each total line giving me spaces between the total lines instead of before them. It would be nice if there was a…
  • CaymanPort wrote: » I need to move around some memo objects and adjust the height of a band while the report is being generated. I added the following to the script: procedure MasterDataOnBeforePrint(Sender: TfrxComponent); begin   if (DRID = …
  • gpi wrote: » Use TfrxOverlay band Thanks! Got it working with some help from another user on StackOverflow.