zoom

M

mpjm

i have searched through the forums and found a way to set the zoom
feature automatically to 100 so my user doesnt have to click all the
time, but i get an error at run time...

"Run-time error '2046': The command or action 'Zoom100%' isn't
available now."

what can i do?

i have it set in the "on open" event procedure for my report
 
F

fredg

i have searched through the forums and found a way to set the zoom
feature automatically to 100 so my user doesnt have to click all the
time, but i get an error at run time...

"Run-time error '2046': The command or action 'Zoom100%' isn't
available now."

what can i do?

i have it set in the "on open" event procedure for my report

Place that code in the Form event that is used to open the report:

DoCmd.OpenReport "ReportName", acViewPreview
DoCmd.RunCommand acCmdZoom100
 

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

Top