Cancel printing a section

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
 
A

Allen Browne

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.)
 
A

Al Camp

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
 
Top