bottom
Great WordTips!
         
Your e-mail address is safe!
Close Note

Tips.Net > WordTips Home > Editing > Bookmarks > Getting the Names of Defined Bookmarks with WordBasic

Getting the Names of Defined Bookmarks with WordBasic

Summary: Want to find out the names of bookmarks? This WordBasic code will do it for you. (This tip works with Microsoft Word 6, and Word 95.)

Chances are good that you already know how to use bookmarks. (Other WordTips have described how to define and manipulate them.) If you are creating macros, you may have a need to retrieve the names of the bookmarks defined within a document.

WordBasic lets you retrieve bookmark names by using the contents of the BookmarkName array. The syntax of the statement is as follows:

x$ = BookmarkName(y)

where y is the offset pointer to the bookmark name wanted. After executing the statement, x$ will contain the name of the bookmark specified by the pointer. To make this function useful, you really should read all the bookmark names into an array, which you can then manipulate. The following code fragment will do the trick:

Dim Bmk() As String
Dim x As Integer, J As Integer

x = CountBookmarks
Dim Bmk$(x)
For j = 1 to x
    Bmk$(j) = BookmarkName(j)
Next j

Tip #761 applies to Microsoft Word versions: 6 | 95


Take Control! Master the real power behind Word! Successfully master the secrets of powerful formatting and create documents that stand out from the rest. Best of all, you can create documents that are easy to maintain and quick to change.
 
Check out Word 2007 Styles and Templates today!

Helpful Links

Ask a Word Question
Make a Comment

Tips.Net Home
Vital News Home

WordTips FAQ
WordTips Premium

Learn Access Now

Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips

Advertise on the
WordTips Site

 

Great Info!

Get tips like this every week in WordTips, a free productivity newsletter. Enter your e-mail address and click "Subscribe."
     
(Your e-mail address will never be shared with anyone, ever.)