G Guest Jun 2, 2004 #1 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
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
S Stefan Blom Jun 2, 2004 #2 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 Click to expand... document it shows frames or cells around it. Why? How can I clear the frames?
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 Click to expand... document it shows frames or cells around it. Why? How can I clear the frames?
G Graham Mayor Jun 2, 2004 #3 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 <>>< ><<> ><<> <>>< ><<> <>>< <>><
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 <>>< ><<> ><<> <>>< ><<> <>>< <>><