Print window defaults

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to have the page range section on the print window to default
to Current Page instead of All?
 
gemaus said:
Is it possible to have the page range section on the print window to
default to Current Page instead of All?

Add this macro to your template, using the instructions at
http://www.gmayor.com/installing_macro.htm:

Sub FilePrint()
Dim dlg As Dialog
Set dlg = Dialogs(wdDialogFilePrint)
With dlg
.Range = wdPrintCurrentPage
.Show
End With
Set dlg = Nothing
End Sub
 

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