P
PRR
Is there a way to get Word 2002 to automatically paste unformatted
text? I have Word set up to show the paste options glue bottle, which
is nice. 90% of the time, I want unformatted text to be pasted (or
better, to acquire the formatting of the destination page), so when I
have run Word 2007, I used its options to make the default action,
pasting unformatted text. Now Word 2002 will still let me have that
glue bottle when I paste onto a document, but I always have to tell it
to change formatted text to text only.
Barring this, one of the MVPs here has given me a macro to tell Word
to paste unformatted text. I have reproduced its code here:
Sub PasteUnfText()
On Error GoTo Oops
Selection.PasteSpecial DataType:=wdPasteText, Placement:= _
wdInLine
End
Oops:
Beep
End Sub
Now is there a way to have Word include that glue bottle after using
this macro? That would basically get me what I want (what I asked for,
above).
text? I have Word set up to show the paste options glue bottle, which
is nice. 90% of the time, I want unformatted text to be pasted (or
better, to acquire the formatting of the destination page), so when I
have run Word 2007, I used its options to make the default action,
pasting unformatted text. Now Word 2002 will still let me have that
glue bottle when I paste onto a document, but I always have to tell it
to change formatted text to text only.
Barring this, one of the MVPs here has given me a macro to tell Word
to paste unformatted text. I have reproduced its code here:
Sub PasteUnfText()
On Error GoTo Oops
Selection.PasteSpecial DataType:=wdPasteText, Placement:= _
wdInLine
End
Oops:
Beep
End Sub
Now is there a way to have Word include that glue bottle after using
this macro? That would basically get me what I want (what I asked for,
above).