default paste setting?

J

Jeff

Is there a default paste setting in Office that can be changed? Right now,
if I copy and paste text anywhere in Office with control-c and control-v,
the text will always paste as formatted text like rich text format or html.
I have to use the menu to paste as unformatted text. Is there a way to
change the default paste to unformatted text?

Jeff
 
S

Suzanne S. Barnhill

There is a setting in Word 2007 but not in previous versions (except for
pictures).

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org
 
S

Stefan Blom

Note that you can change the paste behavior in Word 97-2003 by intercepting
the EditPaste command. This macro, added to normal.dot, will force pasting
as "Unformatted Text":

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top