invoice print

  • Thread starter klp via AccessMonster.com
  • Start date
K

klp via AccessMonster.com

Is there a way to tell an invoice to print so many lines then break? I could
put a page break in but we have text that prints after the lines of the
invoice print and I don't want them to be broken by putting a few lines on
the 1st page of the invoice and the rest on the second page. This is in the
LineNo footer of the invoice where I need to tell where to break the page.
Any suggestions.
 
G

Guest

You can force page breaks after a designated number of records. For instance
if you wanted to place 10 records per page:
-Add a text box to the detail section:
Name: txtCountDetails
Control Source: =1
Running Sum: Over All
Visible: No
-Add a page break at the bottom of the detail section
Name: PgBrk
-Add code to the On Format event of the Detail Section:
Me.PgBrk.Visible = Me.txtCountDetails Mod 10 = 0
 

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