Print a Hard Copy of Form

Oyster

Registered User.
Local time
Today, 06:09
Joined
Nov 16, 2004
Messages
34
Is it possible to easily create a hardcopy of a form so that I can email it, or, print it out and give it to users to fill out?
 
If you are not using a continous form and you want to print the form [simple screen print of the form] for the current record you can use this...
Code:
DoCmd.RunCommand acCmdSelectRecord
DoCmd.PrintOut acSelection
The advantage is the "what you see is what you get" effect is printed. I have a few apps that I use this for the users like the look of the printed form since the data is displayed and printed exactly the same.
 

Users who are viewing this thread

Back
Top Bottom