Word document locking up after pasting?

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

Guest

I tried to paste an email from my yahoo email into my word document and the
whole word document locked up, had to press ctrl-alt-delete and it said that
the program was not responding. I can paste from other websites ok but when
it comes to pasting an email from yahoo the document locks up?
 
Hi Laurie,

Try pasting from a Yahoo e-mail into something like a Notepad file. Does
that work? If so, then you can first paste the the Notepad, then copy and
paste again into Word. If it doesn't work, it is probably a problem with your
Yahoo account.

Doug
 
Use edit > paste special > unformatted text
(or use the following macro)

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