View Single Post
 
Old 07-14-2014, 11:37 PM
Villalobos Villalobos is offline Windows 8 Office 2013
Novice
 
Join Date: Jul 2014
Posts: 7
Villalobos is on a distinguished road
Default

with this I can disable the print function:

Private WithEvents App As Word.Application
Private Sub Document_Open()
Set App = Application
End Sub
Private Sub Document_Close()
Set App = Nothing
End Sub
Private Sub App_DocumentBeforePrint(ByVal Doc As Document, Cancel As Boolean)
Cancel = True
End Sub
Reply With Quote