Dynamically changinging visible property

M

Marshall Barton

nrl said:
Need to dynamically change the visible property for a section on a report.


If visibility is dependent on a value in each record, then
you can do that in the section's Format event.

If visibility depends only on factors out side the report
(e.g. a form control's value), then you couls alsi use the
report's Open event.

In a VBA event procedurem the code would be like:
Me.Section(N).Visible = <some True/False expression>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top