O Oyster Registered User. Local time Today, 06:09 Joined Nov 16, 2004 Messages 34 Jan 13, 2005 #1 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?
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?
___ ¯¯¯¯¯ Local time Today, 11:09 Joined Nov 27, 2003 Messages 595 Jan 13, 2005 #2 Why not use a report?
ghudson Registered User. Local time Today, 06:09 Joined Jun 8, 2002 Messages 6,194 Jan 13, 2005 #3 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.
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.