S salmonella Jan 20, 2010 #1 What do you have to do so that a report will open at a specific zoom value, say 200% or 500% thanks
T Tom van Stiphout Jan 20, 2010 #2 On Wed, 20 Jan 2010 04:29:01 -0800, salmonella Pretty much any command you can do with the menu system can be done with RunCommand. Zoom is no exception: RunCommand acCmdZoom200 -Tom. Microsoft Access MVP
On Wed, 20 Jan 2010 04:29:01 -0800, salmonella Pretty much any command you can do with the menu system can be done with RunCommand. Zoom is no exception: RunCommand acCmdZoom200 -Tom. Microsoft Access MVP
G Guest Jan 20, 2010 #3 salmonella said: What do you have to do so that a report will open at a specific zoom value, say 200% or 500% thanks Click to expand...
salmonella said: What do you have to do so that a report will open at a specific zoom value, say 200% or 500% thanks Click to expand...
S Stefan Hoffmann Jan 20, 2010 #4 hi, as I cannot read the other answers... What do you have to do so that a report will open at a specific zoom value, say 200% or 500% Click to expand... Try this: DoCmd.OpenReport AReportName, acPreview Reports(AReportName).ZoomControl = 200 mfG --> stefan <--
hi, as I cannot read the other answers... What do you have to do so that a report will open at a specific zoom value, say 200% or 500% Click to expand... Try this: DoCmd.OpenReport AReportName, acPreview Reports(AReportName).ZoomControl = 200 mfG --> stefan <--