how to remove print option in a particular excel file

R

Ron de Bruin

You can do this
Copy this event in the Thisworkbook module

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

If you want to remove the print icon post back
 
Top