Stop Printing

D

D A N

Hello
In a bid for Sustainable working (reducing my companies carbon footprint)
i'm trying to limit the amount of printing done on my network.
i can block printing using VBA in Excel but i'm scoobied about how to do it
in word
any ideas ?
 
J

Jonathan West

D A N said:
Hello
In a bid for Sustainable working (reducing my companies carbon footprint)
i'm trying to limit the amount of printing done on my network.
i can block printing using VBA in Excel but i'm scoobied about how to do
it
in word
any ideas ?

An alternative idea to Pranav's is to create two macros as follows

Sub FilePrint()
MsgBox "Sorry, printing not allowed here"
End Sub

Sub FilePrintDefault()
MsgBox "Sorry, printing not allowed here"
End Sub

Place the macros in a template, and load the template as an add-in by
putting it in Word's Startup folder.
 

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

Top