Track Changes in WORD

  • Thread starter Thread starter Michael
  • Start date Start date
M

Michael

There was an option to select different colors for
inserted and deleted text in previous version of WORD. NO
MORE in word 2002. Any way arround it?
 
Hi Michael,
There was an option to select different colors for
inserted and deleted text in previous version of WORD. NO
MORE in word 2002.
You can do it using the VBA interface (or a macro, if you
need something permanent).

Press Alt+F11 to open the macro editor

Press Ctrl+G to open the "Immediate window"

Type:
Application.Options.DeletedTextColor =

As soon as you type = you should get a list of colors.
Choose the one you prefer.

If you want this as a permanent macro you need to type into
a code module window:

Sub ChangeMyDeleteColor()
Application.Options.DeletedTextColor = 'wdColor here
End Sub

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Sep
30 2003)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any
follow question or reply in the newsgroup and not by e-mail
:-)
 
Back
Top