Sep 20, 2004 #1 freefour MIS Joined Aug 26, 2004 Messages 33 Location US Hello, How would I accomplish opening a report in preview, two pages shown and zoomed to fit from a button click? Thanks! --freefour
Hello, How would I accomplish opening a report in preview, two pages shown and zoomed to fit from a button click? Thanks! --freefour
Sep 30, 2004 #2 Wes1961 Technical User Joined Aug 21, 2001 Messages 72 Location US This should help with part of your problem On your button: DoCmd.OpenReport "yourReport", acPreview In the "On Open" event of your report DoCmd.Maximize SendKeys "z", True Wes Upvote 0 Downvote
This should help with part of your problem On your button: DoCmd.OpenReport "yourReport", acPreview In the "On Open" event of your report DoCmd.Maximize SendKeys "z", True Wes