How can I clear frames? (from a newbie, sorry)

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

Guest

When I copy plain text from any webpage and paste it to a Word document it shows frames or cells around it. Why? How can I clear the frames
Thanks
 
Use Edit > Paste Special, and choose to paste as "Unformatted text".

--
Stefan Blom


Mike said:
When I copy plain text from any webpage and paste it to a Word
document it shows frames or cells around it. Why? How can I clear the
frames?
 
When you get to the point of pasting into Word, use Edit > paste special as
unformatted text. If you do this a lot a macro will speed things up:

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

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

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><
Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>><
 

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