How to automate zoom+ in Print Preview

  • Thread starter KimTong via AccessMonster.com
  • 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
 
K

krissco

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
 
M

Marshall Barton

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
 

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