Prev: Simple... Using FIND, I need to get the row and cell
Next: VBA: Insert Page Breaks code is not working in Excel 2010
From: lABUDDY on 22 Apr 2010 04:35 hOW DO i DISABLE PRINT BUTTON IN PRINTVIEW
From: Brian on 22 Apr 2010 11:53
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 |