Cancel printing a section

  • Thread starter Thread starter Al Camp
  • Start date Start date
A

Al Camp

I'd like to (under certain conditions) not print the Report Footer section
of a report.

I'm familiar with using OnFormat and OnPrint to customize control
output/appearance, but what coding could I use to "skip" an entire section.

Thanks,
Al Camp
 
Set the report's runtime properties PrintSection and MoveLayout to No in the
section's Format event.

Alternatively, set the Visible property of the section to No. (It does have
a Visible property, though it is not shown in the Intellisense list.)
 
Allen,
Thanks a lot. I just didn't have any idea what to "search" on to find
out about cancelling a complete section.
I'll check out "MoveLayout" (never used that before), but I would think
..Visible would do the trick just fine.
I'll try to get back with results...
Thanks,
Al Camp
 
Back
Top