Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

printing forms

Status
Not open for further replies.

etcrier

Programmer
Sep 20, 2006
60
US
I have a form to print and I added a button to "print this form only.
it prints perfectly except all forms not just the one i am on.

i verified that i chose "print this form only" when I made
the button.

thanks

david

god i love this board- you guys are GREAT
 
Print form will print all the records, unless you mess about a bit. For example:

Code:
intPage = Me.Recordset.AbsolutePosition + 1

DoCmd.PrintOut , intPage, intPage
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top