You can copy/paste this into the ThisWorkBook code module :-
'---------------------------------------------------------
Private Sub Workbook_BeforePrint(Cancel As Boolean)
Cancel = True
MsgBox ("Printing not allowed.")
End Sub
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As
Boolean)
Cancel = True
MsgBox ("Saving not allowed.")
End Sub
'----------------------------------------------------------