open report at 200% zoom

  • Thread starter Thread starter salmonella
  • Start date Start date
S

salmonella

What do you have to do so that a report will open at a specific zoom value,
say 200% or 500%

thanks
 
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
 
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%
Try this:

DoCmd.OpenReport AReportName, acPreview
Reports(AReportName).ZoomControl = 200


mfG
--> stefan <--
 
Back
Top