acCmdXoom constants for RunCommand

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I'm trying to view a report with 75% zoom through
DoCmd.RunCommand acCmdZoom75
The error message states something like "not available right now".
acCmdZoom500 and acCmdZoom1000 works fine...

Anyone found proper documentation on RunCommand?
Grateful for any tip, if only a book reference (I want to know WHY).
Br,
kk
 
Hello,
I'm trying to view a report with 75% zoom through
DoCmd.RunCommand acCmdZoom75
The error message states something like "not available right now".
acCmdZoom500 and acCmdZoom1000 works fine...

Anyone found proper documentation on RunCommand?
Grateful for any tip, if only a book reference (I want to know WHY).
Br,
kk

Place the RunCommand in the code of the event you use to open the
report:

DoCmd.OpenReport "ReportName", acViewPreview
DoCmd.RunCommand acCmdZoom75
 
Back
Top