Printing

T

tman

I need to be able to print a report from a form that I am
entering info on. I can do it with a query but I would
like to have a button on a form that will print the form
you are working on without asking any questions

Thanks
 
S

SA

Create your button, in its On Click event procedure, add this code:

Docmd.SelectObject acForm, "YourFormName", False
Docmd.PrintOut
 

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