calara
Comments
- 
                You could add an Integer variable to the header or title band (preferably the latter) and set it's value to 1 (or anything you want) and visibility to false.
 Then add a group on that variable and make sure that 'Print Group Headers on Subseque…
- 
                Try in DBCalc40.BeforePrint - it should work there
- 
                Most databases will just add zero for the time component if you just give a date to DateTime field. So when the above gets to your database the search criteria will be
 'BETWEEN 2014-10-09 00:00:000 AND 2014-10-10 00:00:000'
 ie…
- 
                Try
 budgetValue.font.bold := true;
 Always found that BeforePrint is the best place for this so that nothing gets in the way
 
- 
                Hello
 I'm a freelance report writer specialising in RBE. I've over 20 years experience over a variety of industries and database systems. I'd be happy to take a look at any work you may have. You can email me directly at rodnorth@calara.…
- 
                Try
 'Report | User Interface | Preview Form Settings' make sure that 'SinglePageOnly' is false (unchecked).
- 
                I had something similar (but not identical) on a complex report where the top few lines of the group footer was missing, but the rest appeared when a page break occurred in the footer.
 Turned out to be a page summary band which I was using for …
- 
                You need to bracket each condition separately in Delphi. But why don't you hide all three regions first - and then just turn the one on that you need based on the data?
- 
                As a workaround I've found that if you copy the values from the DBCalcs into a variable in the group footer band, you can then use the values of that variable in the summary. DM will probably have a better way though :-)
- 
                Thank you Nico
 I'll see if the customer has deep enough pockets :-)
 Rod
- 
                Hello Nico
 The RB version is 18 (Enterprise) / Delphi 10.1
 However, I was hoping to use RAP to do this as I think we have other customers who would benefit from such a facility. I've attempted to add code to the BeforePrint and…