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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top