From: lABUDDY on
hOW DO i DISABLE PRINT BUTTON IN PRINTVIEW
From: Brian on
Add the following to your workbook code. Note that if the user has macro's
disabled it will not prevent it.

Private Sub Workbook_BeforePrint(Cancel As Boolean) Cancel = True End Sub

"lABUDDY" wrote:

> hOW DO i DISABLE PRINT BUTTON IN PRINTVIEW