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.