Can you open print preview in zoom with VBA?

OBBurton

Registered User.
Local time
Today, 01:36
Joined
Dec 26, 2013
Messages
77
Hi,

Can you force print preview to open in zoom 100% mode with VBA?
 
Try the below:
Code:
  DoCmd.OpenReport "YourReportName", acViewPreview
  DoCmd.RunCommand acCmdZoom100
 
Thank you!
It worked perfectly!
 

Users who are viewing this thread

Back
Top Bottom