Bookmarks whose names start with an underscore are hidden. Do the
following to go to a hidden bookmark: In the Bookmark dialog box,
check the option for "Hidden bookmarks." You may have to click the
"Location" button to see the bookmark names. Select the name and click
Go To.

Signature
Stefan Blom
Microsoft Word MVP
> Hello,
> I have hyperlinks in my document, which are pointing to headings. The
[quoted text clipped - 3 lines]
> I find the destination, especially the paragraph the hyperlink is
> pointing to.
olexij.tkatchenko@googlemail.com - 14 Nov 2006 12:19 GMT
Stefan Blom schrieb:
> Bookmarks whose names start with an underscore are hidden. Do the
> following to go to a hidden bookmark: In the Bookmark dialog box,
[quoted text clipped - 15 lines]
> > I find the destination, especially the paragraph the hyperlink is
> > pointing to.
Thank you for the hint! Setting
ActiveDocument.Bookmarks.ShowHidden = True
before using ActiveDocument.Bookmarks solved my problem. The piece of
code I use:
Dim BM As Bookmark
ActiveDocument.Bookmarks.ShowHidden = True
For j = ActiveDocument.Bookmarks.Count To 1 Step -1
Set BM = ActiveDocument.Bookmarks(j)
' do some stuff
Next j
Stefan Blom - 14 Nov 2006 12:34 GMT
I'm glad you found a solution, and thank you for the feedback.

Signature
Stefan Blom
Microsoft Word MVP
> Stefan Blom schrieb:
>
[quoted text clipped - 32 lines]
> ' do some stuff
> Next j