View Single Post
 
Old 11-04-2015, 05:30 PM
Eduardo Care Eduardo Care is offline Windows 8 Office 2010 64bit
Advanced Beginner
 
Join Date: Aug 2015
Location: Cali
Posts: 32
Eduardo Care is on a distinguished road
Default

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.
Reply With Quote