Create Macro - grayed out

  • Thread starter Thread starter zSplash
  • Start date Start date
Z

zSplash

I am trying to intercept the print event, using MVP guidelines: After
selecting the appropriate Word command ("FilePrint"), I am unable to create
as that is grayed out. I have started with a fresh normal.dot, have power
user privileges, and am using Win2k. Any ideas?

TIA
 
You need to create a new macro with the same name ie

Sub FilePrint()

in order to intercept the in-built command. You cannot edit the in-built
command itself.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Thanks so much.

st.
Graham Mayor said:
You need to create a new macro with the same name ie

Sub FilePrint()

in order to intercept the in-built command. You cannot edit the in-built
command itself.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top