i like to force detail section to continue to print at new page if a field value is 100. how?.
A alxw3 via AccessMonster.com Jun 12, 2009 #1 i like to force detail section to continue to print at new page if a field value is 100. how?.
D Duane Hookom Jun 12, 2009 #2 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)
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)