Printing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to protect an excel file from being printed by someone else?
 
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
 
Not really.

Even if you used Vincnet's suggestion, the user could disable macros (or even
events) and print.

Or even copy your data to a worksheet in another workbook and print from there.
 
Is it possible to protect an excel file from being printed by someone
else?

Only by GT-DDS:

Go There and either Disable, Destroy or Steel their printer! ;-)))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top