How do I delete all my bookmarks in Word 2000? Richard
J Jezebel Jan 10, 2007 #2 Switch to VBA. In the Immediate window type Do until ActiveDocument.Bookmarks.Count = 0 : activedocument.bookmarks(1).delete : loop If you want to delete hidden bookmarks also, you'll first need to check the 'Show hidden bookmarks' checkbox on the Bookmarks dialog.
Switch to VBA. In the Immediate window type Do until ActiveDocument.Bookmarks.Count = 0 : activedocument.bookmarks(1).delete : loop If you want to delete hidden bookmarks also, you'll first need to check the 'Show hidden bookmarks' checkbox on the Bookmarks dialog.
R Richard Jan 10, 2007 #3 Thanks .... Richard Jezebel said: Switch to VBA. In the Immediate window type Do until ActiveDocument.Bookmarks.Count = 0 : activedocument.bookmarks(1).delete : loop If you want to delete hidden bookmarks also, you'll first need to check the 'Show hidden bookmarks' checkbox on the Bookmarks dialog. Click to expand...
Thanks .... Richard Jezebel said: Switch to VBA. In the Immediate window type Do until ActiveDocument.Bookmarks.Count = 0 : activedocument.bookmarks(1).delete : loop If you want to delete hidden bookmarks also, you'll first need to check the 'Show hidden bookmarks' checkbox on the Bookmarks dialog. Click to expand...