print scaling

  • Thread starter Thread starter geebee
  • Start date Start date
G

geebee

hi,

i have the following:

ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True

is there a way i can amend this so that i can instruct to print at 80
percent of original size?

thanks in advance,
geebee
 
Try:

ActiveWindow.SelectedSheets.PageSetup.Zoom = 80
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True

I didn't test this so you might have to loop through the sheets to set the
zoom.
 
hi,

would this pretty much be the same syntax for Access VBA?

ActiveWindow.SelectedSheets.PageSetup.Zoom = 80
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True

how could i amend this to print an Access form?

thanks in advance,
geebee
 

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

Similar Threads

Printing Macro 4
Command Button 6
macro to print a sheet if a cell is a certain value 1
print form 1
Print two different areas on a worksheet 4
print zoom 1
Pop Up Message before printing 3
Printing Macro 1

Back
Top