UPDATE:
I add the following Code
Code:
Sub FilePrint()
With ActiveDocument
.Bookmarks("ShowHide1").Range.Font.Hidden = True
.Bookmarks("ShowHide2").Range.Font.Hidden = True
Application.ScreenRefresh
With Dialogs(wdDialogFilePrint)
.Show
End With
.Bookmarks("ShowHide1").Range.Font.Hidden = False
.Bookmarks("ShowHide2").Range.Font.Hidden = False
End With
End Sub
But only works if the document its not protected, i don't know if i could work on this or look for another alternative.