Thread: Printing
View Single Post
  #2   Report Post  
Vincnet.
 
Posts: n/a
Default

I don't how to do that without a macro...
using macro, you can use the event of the workbook BeforePrint like this:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
Cancel = True
End Sub


--
A+

V.


"Al" wrote:

Is it possible to protect an excel file from being printed by someone else?