View Single Post
  #11   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom[_3_] Stefan Blom[_3_] is offline
external usenet poster
 
Posts: 6,897
Default Font color button

"Peter T. Daniels" wrote in message
...

When you copy something from a web site, use Paste Special [---]


Or you could make use of a macro to ensure that you always paste in plain
text format:

Sub PastePlainTextOnly()
On Error Resume Next
Selection.PasteSpecial DataType:=wdPasteText
End Sub

Running the macro will be easy if you assign it to a QAT button and/or
associate it with a keyboard shortcut. For more, see
http://www.gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP