Printing

  • Thread starter Thread starter tman
  • Start date Start date
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
 
Create your button, in its On Click event procedure, add this code:

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