Posted here by someone else
in the Form that you use to open the report, add additional code afte the command to open the report as in this example (you can see where I've commented out the command which would open zoomed to 75%)... Then in the REPORT's On Close Event
add .... DoCmd.Restore.. which will take you back from the Maximized window state.
With DoCmd
.OpenReport "YourReportName", acViewPreview
'.RunCommand acCmdZoom75
.RunCommand acCmdFitToWindow
.Maximize
End With
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.