M Mendoza007 Guest Oct 1, 2004 #1 When I've created a print command button on one of my forms it prints out all the records not just the one which is being viewed. How so I tell it to only print out the form containing the active record???????
When I've created a print command button on one of my forms it prints out all the records not just the one which is being viewed. How so I tell it to only print out the form containing the active record???????
Oldsoftboss AWF VIP Local time Tomorrow, 05:42 Joined Oct 28, 2001 Messages 2,499 Oct 1, 2004 #2 You must set criteria on your cmdbutton code Create a report from a query and set the criteria there Dave
You must set criteria on your cmdbutton code Create a report from a query and set the criteria there Dave
ghudson Registered User. Local time Today, 13:42 Joined Jun 8, 2002 Messages 6,193 Oct 1, 2004 #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.
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.
D DJBummy Registered User. Local time Today, 18:42 Joined Jun 22, 2001 Messages 90 Dec 24, 2004 #4 Never ceases to amaze me how simple the solutions are. Worked like a charm for me.
C cgardner Guest Jan 5, 2005 #5 Print Screen Is there a way to "format" a print screen command to ensure that it prints on one page only?
Print Screen Is there a way to "format" a print screen command to ensure that it prints on one page only?