Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
I deselected the "internet and network paths with hyperlinks" under the
AutoFormat As You Type and the AutoFormat. Why do hyperlinks still appear when I paste info from the internet? Is there some other why to prevent these hyperlinks from appearing, without selecting one at a time. |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Either use paste special unformatted text to paste text containing links
from the internet (or use the following macro to do so) Sub PasteUnfText() On Error GoTo oops Selection.PasteSpecial _ DataType:=wdPasteText, _ Placement:=wdInLine End oops: Beep End Sub or having pasted the active links run the following macro to unlink Sub UnlinkHyperlinks() Dim oField As Field For Each oField In ActiveDocument.Fields If oField.Type = wdFieldHyperlink Then oField.Unlink End If Next Set oField = Nothing End Sub http://www.gmayor.com/installing_macro.htm -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org Linda Y wrote: I deselected the "internet and network paths with hyperlinks" under the AutoFormat As You Type and the AutoFormat. Why do hyperlinks still appear when I paste info from the internet? Is there some other why to prevent these hyperlinks from appearing, without selecting one at a time. |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hyperlinks to Internet and network paths in two differen tabs | Microsoft Word Help | |||
Hyperlinks Changed to UNC Paths | Microsoft Word Help | |||
In Word,can't connect hyperlinks to internet server. Why is this? | Microsoft Word Help | |||
Hyperlinks in word to a network drive | New Users | |||
Hyperlinks to network file locations failing. | New Users |