How to automate zoom+ in Print Preview

  • Thread starter Thread starter KimTong via AccessMonster.com
  • Start date Start date
K

KimTong via AccessMonster.com

Hi,

Is anybody know how to automate zoom+ (big) when we make print preview in
Access?. Everytime I make a report, I always print preview first before I
print the report to printer. But the problem is, access always zoom- on print
preview. So we have to do 1 click tomake it bigger. For computer illeterate,
sometimes the don't know how to make it bigger.

I tried to look on the print properties, bit I can't find out. Thanks in
advance.

KF
 
Hi,

Is anybody know how to automate zoom+ (big) when we make print preview in
Access?. Everytime I make a report, I always print preview first before I
print the report to printer. But the problem is, access always zoom- on print
preview. So we have to do 1 click tomake it bigger. For computer illeterate,
sometimes the don't know how to make it bigger.

I tried to look on the print properties, bit I can't find out. Thanks in
advance.

KF

Add the following command to your report's module either under
Report_Open or Report_Activate or Report_Load or something like that:

DoCmd.Maximize


-Kris
 
KimTong said:
Is anybody know how to automate zoom+ (big) when we make print preview in
Access?. Everytime I make a report, I always print preview first before I
print the report to printer. But the problem is, access always zoom- on print
preview. So we have to do 1 click tomake it bigger. For computer illeterate,
sometimes the don't know how to make it bigger.


You can set the zoom factor for a report by using:
RunCommand acCmdZoom100
right after the OpenReport line in your preview button's
click event.

Other zoom factors you can use:
acCmdZoom10
acCmdZoom1000
acCmdZoom150
acCmdZoom200
acCmdZoom25
acCmdZoom50
acCmdZoom500
acCmdZoom75
 
Back
Top