G Guest Mar 19, 2004 #1 Is there a way to change the default display for previewing reports to 75% instead of 100% ctda
M Marshall Barton Mar 19, 2004 #2 ctdak said: Is there a way to change the default display for previewing reports to 75% instead of 100%? Click to expand... Use: DoCmd.RunCommand acCmdZoom75 right after the DoCmd.OpenReport line of code. These are the available zoom factors that work with the above: acCmdZoom10 acCmdZoom100 acCmdZoom1000 acCmdZoom150 acCmdZoom200 acCmdZoom25 acCmdZoom50 acCmdZoom500 acCmdZoom75 acCmdSizeToFit
ctdak said: Is there a way to change the default display for previewing reports to 75% instead of 100%? Click to expand... Use: DoCmd.RunCommand acCmdZoom75 right after the DoCmd.OpenReport line of code. These are the available zoom factors that work with the above: acCmdZoom10 acCmdZoom100 acCmdZoom1000 acCmdZoom150 acCmdZoom200 acCmdZoom25 acCmdZoom50 acCmdZoom500 acCmdZoom75 acCmdSizeToFit
G Guest Mar 19, 2004 #3 Thanks much. That will do it for me. ctdak ----- Marshall Barton wrote: ----- Is there a way to change the default display for previewing reports to 75% instead of 100%? Click to expand... Use: DoCmd.RunCommand acCmdZoom75 right after the DoCmd.OpenReport line of code. These are the available zoom factors that work with the above: acCmdZoom10 acCmdZoom100 acCmdZoom1000 acCmdZoom150 acCmdZoom200 acCmdZoom25 acCmdZoom50 acCmdZoom500 acCmdZoom75 acCmdSizeToFit
Thanks much. That will do it for me. ctdak ----- Marshall Barton wrote: ----- Is there a way to change the default display for previewing reports to 75% instead of 100%? Click to expand... Use: DoCmd.RunCommand acCmdZoom75 right after the DoCmd.OpenReport line of code. These are the available zoom factors that work with the above: acCmdZoom10 acCmdZoom100 acCmdZoom1000 acCmdZoom150 acCmdZoom200 acCmdZoom25 acCmdZoom50 acCmdZoom500 acCmdZoom75 acCmdSizeToFit