View Single Post
  #3   Report Post  
Posted to microsoft.public.word.formatting.longdocs
Jerry George Jerry George is offline
external usenet poster
 
Posts: 1
Default Delete All Bookmarks

You can simply try running a macro,

Dim bkm As Bookmark
For Each bkm In ActiveDocument.Bookmarks
bkm.Delete
Next bkm

Note that this does not delete the hidden bookmarks.

If you have multiple files you can use file io to list the directory and
then open each file and iterate the above code snippet using simple word
interop. If you need more help, just give me a holla..


Jerry George
Tata Consultancy Service Ltd.
Software Engineer

-------------------------------
"Frustrated Word User" wrote:


I would like to delete all the bookmarks in a document.

YES I read the ONE post about this, and I don't know what a VBA is.
Sorry, Word is not my forte.

Thanks in advance.

Frustrated in Roseville




--
Frustrated Word User