how to disable print button in preview

  • Thread starter Thread starter lABUDDY
  • Start date Start date
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
 
Back
Top