View Single Post
 
Old 01-06-2011, 01:50 AM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2000
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Hi Nathalie,

Try adding the following macro to Word's 'Normal' template:
Code:
Sub FilePrint()
Dim strPrtNm As String
strPrtNm = ActivePrinter
With Application.Dialogs(wdDialogFilePrint)
  If .Show = -1 Then ActiveDocument.PrintOut
End With
ActivePrinter = strPrtNm
End Sub
To see how to do this, see: www.gmayor.com/installing_macro.htm

The macro intercepts the File|Print dialog box. In doing so, it captures the curent printer's name, allows the user to change the printer & print, then restores the original printer. Since the first printer captured should be the default one, that's what it'll keep restoring. A bit of a pain if you want to send a series of documents to a different printer, but it should resolve the other difficulties.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote