No, but you can create a macro that pastes as unformatted text:
Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial DataType:=wdPasteText
End
oops:
Beep
End Sub
and then assign the macro to a toolbar button or a keyboard
shortcut to make it easy to run. See:
http://www.gmayor.com/installing_macro.htm
http://word.mvps.org/FAQs/Customization/AsgnCmdOrMacroToToolbar.htm
http://word.mvps.org/FAQs/Customization/AsgnCmdOrMacroToHotkey.htm .
> hello everyone,
>
[quoted text clipped - 5 lines]
>
> ty
Graham Mayor - 20 Jan 2006 06:11 GMT
And you could re-assign CTRL+V to call that macro (though frankly I would
just add it to a custom toolbar).

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> No, but you can create a macro that pastes as unformatted text:
>
[quoted text clipped - 20 lines]
>> down alot, is there a way to set unformatted text as the default
>> paste method? ty
Abraham Andres Luna - 20 Jan 2006 13:26 GMT
thank you so much for your answer, it works perfectly :)