G GB Oct 19, 2005 #1 Hello: I need to print a report without preview it by user. How to this programmatically? Thanks, GB
R Rick B Oct 19, 2005 #3 DoCmd.OpenReport "MyReport", acViewPreview, , If you want the report to print without preview, replace acViewPreview with acViewNormal.
DoCmd.OpenReport "MyReport", acViewPreview, , If you want the report to print without preview, replace acViewPreview with acViewNormal.