WD: Cannot Go to Bookmark in a Subdocument (105885)
The information in this article applies to:
- Microsoft Word for Windows 6.0
- Microsoft Word for Windows 6.0a
- Microsoft Word for Windows 6.0c
- Microsoft Word for Windows 95
- Microsoft Word for Windows 95 7.0a
- Microsoft Word for the Macintosh 6.0
- Microsoft Word for the Macintosh 6.0.1
- Microsoft Word for the Macintosh 6.0.1a
- Microsoft Word 97 for Windows
- Microsoft Word 98 Macintosh Edition
This article was previously published under Q105885 SYMPTOMS
When you use the Go To command in Microsoft Word, you cannot go from one
subdocument (or document component) to a bookmark in another subdocument or
the main body of the document. Similarly, you cannot go from the main body
of a document to a bookmark in a subdocument. In other words, you cannot go
from one layer of a document to a bookmark in another layer. The bookmark
does not appear on the Bookmark Name list in the Edit Go To dialog boxes.
In the Edit Bookmark dialog box, the Go To button is unavailable when you
select a bookmark in another layer or subdocument.
NOTE: As used in this article, the word "subdocument" refers to document
components and not to the documents in a master document. The main body of
the document is what you can see in normal view. The following document
elements are examples of subdocuments or document components: headers or
footers, footnotes, endnotes, annotations, text boxes, or callouts.
Examples- You cannot go from a header to a bookmark in a footnote, and you
cannot go from the main body to a bookmark in the header.
- If you create a text box (using the Text Box button on the Drawing
toolbar) and then insert a bookmark in that text box, you cannot go
to the bookmark unless you position the insertion point in the text
box. If your insertion point is in the main body of the document or
in any other layer of the document, you cannot go to the bookmark
using the Go To command. In other words, you cannot go from the
drawing layer in one subdocument to a bookmark in the drawing layer
of the main body or another subdocument.
You can, however, go from one text box in the drawing layer of the
main body to a bookmark in another text box in the drawing layer of
the main body because both text boxes are in the same layer of the
same subdocument.
WORKAROUND
To work around this problem, use the appropriate method for your situation.
Microsoft provides programming examples for illustration only, without warranty either
expressed or implied, including, but not limited to, the implied warranties of
merchantability and/or fitness for a particular purpose. This article assumes
that you are familiar with the programming language being demonstrated and the
tools used to create and debug procedures. Microsoft support professionals can
help explain the functionality of a particular procedure, but they will not
modify these examples to provide added functionality or construct procedures to
meet your specific needs. If you have limited programming experience, you may
want to contact a Microsoft Certified Partner or the Microsoft fee-based
consulting line at (800) 936-5200. For more information about Microsoft Certified
Partners, please visit the following Microsoft Web site:
For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:
Method 1
Position the insertion point in the subdocument before you go to the
bookmark.
Method 2 (Word 97 and Word 98)
Write a Visual Basic for Applications macro that checks for the existence
of the bookmark and if it exists, goes to that bookmark. The following
macro checks for and goes to the bookmark "test", if it exists:
If ActiveDocument.Bookmarks.Exists("test") = True Then
ActiveDocument.Bookmarks("test").Select
Else
MsgBox "Specified bookmark does not exist."
End If
Method 3 (Word 6 and Word 7)
Write a WordBasic macro that goes to the text box and searches for a
bookmark. The following macro searches for the first text box in the
document and locates the bookmark called "test."
Sub main
DrawSetRange "\Doc"
Select Case DrawGetType(1)
Case 3 'Text box
DrawSetInsertToTextbox 1
Case 8 'Callout
DrawSetInsertToTextbox 1
Case Else
End Select
EditGoTo .Destination = "test"
End Sub
STATUS
Microsoft has confirmed this to be a problem in the Microsoft products
listed at the beginning of this article. We are researching this problem
and will post new information here in the Microsoft Knowledge Base as it
becomes available.
Modification Type: | Minor | Last Reviewed: | 8/16/2005 |
---|
Keywords: | kbbug kbdtacode kbmacro kbmacroexample kbProgramming KB105885 |
---|
|