Programmatically printing an addendum

  • Thread starter Thread starter Fred
  • Start date Start date
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?
 
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
 
Back
Top