Prevent Printing

P

Pats

My code below is designed to lockdown my workbook if the user selects Read
Only. What I am wondering, is there any way to also prevent them from
printing the document?


Private Sub CommandButton1_Click()

On Error GoTo Termination

If Me.OptionButton1.Value = True Then
myLocked = True
Unload UserFormAccess
Call Protection.protect_all_sheets
ElseIf Me.OptionButton2.Value = True Then
myLocked = False
Unload UserFormAccess
UserFormPassword.Show
End If

GoTo LastLine

Termination:

LastLine:

End Sub
 
F

FSt1

hi
put this in a thisworkbook module...
Private Sub Workbook_BeforePrint(Cancel As Boolean)

MsgBox "you can't print this!"
Cancel = True

End Sub

adjust message to suit your tastes/needs.
or you might add an if then else statement to allow printing under certain
conditions. your call.
regards
FSt1
 

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

Similar Threads

Compile Error 1
Check cell value exactly 3
vba if and goto statements 4
Prevent macro calculate if text in the range 5
SetFocus problem 3
Printing Macro 1
Combo box 1
Combo Box 1

Top