View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default In "Paste Special", Can I set "Unformatted Text" as the first choi

Use the following macro attached to a toolbar button of keyboard shortcut:

Sub PasteUnfText()
On Error GoTo Oops
Selection.PasteSpecial DataType:=wdPasteText, _
Placement:=wdInLine
End
Oops:
Beep
End Sub

http://www.gmayor.com/installing_macro.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



ATMYTV wrote:
In Word, I almost always want "Unformatted Text' as my choice. It
always brings up HTML as the first choice. Is this something that can
easily be changed? Thanks.