How do you make a macro button not appear when printing document

G

Gary

How do you make a macro button embedded in a document not appear in the
document when printed?
 
J

Jonathan West

Gary said:
How do you make a macro button embedded in a document not appear in the
document when printed?

Set the macro called by the macrobutton to do something like this

Selection.Font.Hidden = True
ActiveDocument.PrintOut Background:=False
Selection.Font.Hidden = False
 

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