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
 
Top