Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
I have a client-supplied document of over fifty pages with many, many links.
I need to place these links into a design (Quark) layout. Can I export all of the links in the document into a simple listing rather than picking through all the copy paragraph by paragraph to copy and paste links? |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Run this code --
Sub Macro1 Dim pLink As Word.Hyperlink For Each pLink In ActiveDocument.Hyperlinks ActiveDocument.Content.InsertAfter pLink.Address & vbCr Next End Sub This will insert a list of all the hyperlinks at the end of the document. Then you can cut and paste from there. "true" wrote in message ... I have a client-supplied document of over fifty pages with many, many links. I need to place these links into a design (Quark) layout. Can I export all of the links in the document into a simple listing rather than picking through all the copy paragraph by paragraph to copy and paste links? |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Run a macro containing the following code when the document containing the
hyperlinks is the active document and it will create a new document containing a list of the hyperlinks: Dim source As Document, target As Document, hlink As Hyperlink Set source = ActiveDocument Set target = Documents.Add For Each hlink In source.Hyperlinks target.Range.InsertAfter hlink.Address & vbCr Next hlink -- Hope this helps. Please reply to the newsgroup unless you wish to avail yourself of my services on a paid consulting basis. Doug Robbins - Word MVP "true" wrote in message ... I have a client-supplied document of over fifty pages with many, many links. I need to place these links into a design (Quark) layout. Can I export all of the links in the document into a simple listing rather than picking through all the copy paragraph by paragraph to copy and paste links? |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Word should catalog misspelled words to study. | Microsoft Word Help | |||
Word 97 in Windows XP to maintain formatting | Microsoft Word Help | |||
Word 2003 | Microsoft Word Help | |||
How do I create a Word form like corel WP merge documents? | Microsoft Word Help | |||
Macros - Keyboard Commands | Microsoft Word Help |