Programmatically printing an addendum

F

Fred

I have a report in Access that normally requires one page.
Occasionally I may need an addendum printed on a second
page. Can you please tell me how I would program the
report to print a second page if the answer to a specific
check box is true?
 
H

HSalim

add the addendum to the report whether it is a textbox or whatever
- either to the detail or to the footer - whereever you want it placed
in the section's print event
add code as follows
if me.chkAddendum then
me.txtaddendum.visible = true
Else
me.txtaddendum = false
End if
 

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