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)
 
Top