print

  • Thread starter alxw3 via AccessMonster.com
  • Start date
A

alxw3 via AccessMonster.com

i like to force detail section to continue to print at new page if a field
value is 100. how?.
 
D

Duane Hookom

I would a pagebreak control somewhere in your detail section (it isn't clear
where) and name it [pgbrk]. Then add code in the On Format event of the
detail section like:

Me.pgbrk.Visible = (Me.[YourCtlBoundToTheField] = 100)
 

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