Report Header

vgersghost

Vgersghost
Local time
Today, 17:40
Joined
Apr 29, 2005
Messages
106
Is there a way to make the Report Header and Report Footer print out as the last page. I would like to put grand totals on this page without any addtional information.

thx
 
Why not just change the fields properties in the detail section to

Visible - No

Wouldn't that do the same thing?
 
The report header will print at the beginning of the report (hence the "HEAD"er) and the footer will print out at the end of the report. You can set it so that they print on individual sheets, but you can't put the header and footer on the same page unless you were to modify the report so that all things weren't visible, as statsman has suggested. This would be a bit difficult, I would think, as you would need to set the report header's visible property to no, print the details, and then set the details visible to no and reset the header to visible. And, it would likely need to happen in design mode so you would have to open the report twice in design mode (yes you can open it in design mode programmatically) to make the changes, save it and then print and then open it, make changes, and print. Not too efficient.
 
Thank You

Already played with visble on and off. The code does it in design mode. I was just hoping I didn't have to do it that way. The report is quite large. Lots of pages, takes a little while to process, becuase each group of data has it own closing page with report header and footer details. (Not my idea)

thanks again
 

Users who are viewing this thread

Back
Top Bottom