How do I speed up the copy and paste transfer

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I cut and paste something into a Word document the process takes what
seems to be longer than it used to. Thank you
 
If pasting into Word 2003 or earlier, try using Edit | Paste Special |
Paste as: Unformatted text. If pasting into Word 2007, try using Home |
Paste: Paste Special | Paste: As: Unformatted Text.
 
Or the following macro attached to a keyboard shortcut or toolbar button
will work in either version:

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

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

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

Back
Top