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
 
Top