Setting page margins on print

T

terry

I would like to set the report page margins on print to .25
here is the code for the print button I am using it uses the current record
log


Dim StrWhere As String
StrWhere = "[LOG]= """ & Me!Log & """"
DoCmd.OpenReport "DELIVERY ORDER", acViewPreview, , StrWhere
DoCmd.PrintOut acPages, 1, 1
DoCmd.Close acReport, "DELIVERY ORDER"
 

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