Set Print Margins

  • Thread starter Thread starter scott
  • Start date Start date
S

scott

Is it possible to code the margins maybe in on open event? The secretary's
access reports seem to change to my larger margins (because i have an
inkjet) and after I modify our database. she has a laser and needs the
default smaller margins.
 
Access 2002 and 2003 have the Printer object.

If you are using these versions, try something like this:

With Me.Printer
.TopMargin = 1440
.BottomMargin = 1440
.LeftMargin = 1440
.RightMargin = 1440
End With
 
thx

Allen Browne said:
Access 2002 and 2003 have the Printer object.

If you are using these versions, try something like this:

With Me.Printer
.TopMargin = 1440
.BottomMargin = 1440
.LeftMargin = 1440
.RightMargin = 1440
End With
 
what unit is 1440?


Allen Browne said:
Access 2002 and 2003 have the Printer object.

If you are using these versions, try something like this:

With Me.Printer
.TopMargin = 1440
.BottomMargin = 1440
.LeftMargin = 1440
.RightMargin = 1440
End With
 

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

Back
Top