How do you make a macro button embedded in a document not appear in the document when printed?
G Gary Jul 31, 2008 #1 How do you make a macro button embedded in a document not appear in the document when printed?
J Jonathan West Aug 1, 2008 #2 Gary said: How do you make a macro button embedded in a document not appear in the document when printed? Click to expand... Set the macro called by the macrobutton to do something like this Selection.Font.Hidden = True ActiveDocument.PrintOut Background:=False Selection.Font.Hidden = False
Gary said: How do you make a macro button embedded in a document not appear in the document when printed? Click to expand... Set the macro called by the macrobutton to do something like this Selection.Font.Hidden = True ActiveDocument.PrintOut Background:=False Selection.Font.Hidden = False