jmcn106 said:
I'm a student. So when I'm doing research papers, I
usually cut and paste
parts of papers and cite them. For some reason, I can't
do that anymore.
When I try to do this, Word freezes and I have to do an
End Task just to get
out of it. What is wrong?
Depends on the website. When you copy text (control-c) from
a web page and paste it into Word (control-v) you're also
copying a ton of HTML code and possibly also Java scripts
and other stuff that you can't see. Word tries its best to
render all of this and occasionally (frequently) gets
wrapped up in its underwear in the the attempt. This is the
reason for the freezing that your seeing. If you wait *long*
enough, Word will usually regain consciousness--but not
always.
One solution, as someone else said, is to paste into Notepad
first then copy that text and paste it into Word. In this
way you get rid of all the background code.
The method I use is a macro that pastes unformatted into
Word. I've associated it with control-shift-V:
<quote>
Sub PasteUnformatted()
'
' PasteUnformatted Macro
' Control shift V pastes the clipboard without formatting
Selection.PasteSpecial Link:=False, DataType:=wdPasteText,
Placement:= _
wdInLine, DisplayAsIcon:=False
End Sub
</quote>
HTH.