View Single Post
 
Old 08-10-2012, 09:39 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
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

FWIW you could automate the process with a macro like:
Code:
Sub FilePrint()
Dim FntClr As Long
With ActiveDocument
  FntClr = .Styles(wdStyleHeading2).Font.ColorIndex
  .Styles(wdStyleHeading2).Font.ColorIndex = wdWhite
  Application.Dialogs(wdDialogFilePrint).Show
  .Styles(wdStyleHeading2).Font.ColorIndex = FntClr
End With
End Sub
In Word 2003, the above macro intercepts the Ctrl-P keystroke sequence, so you might want to add it to only the relevant document's 'ThisDocument' code module.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote