Default Report Screen Size

  • Thread starter Thread starter croy
  • Start date Start date
C

croy

When I open a report via code, the default viewing size (for
lack of knowing the proper term) is "fit".

Is there something I could add to my form opening code that
would force the "size" to 100%?
 
croy said:
When I open a report via code, the default viewing size (for
lack of knowing the proper term) is "fit".

Is there something I could add to my form opening code that
would force the "size" to 100%?

Right after the OpenReport line:

DoCmd.RunCommand acCmdZoom100
 
Back
Top