![]() |
|
#1
|
|||
|
|||
![]()
Found it: had to uncheck "show bookmarks" in the options.
Thanks again, all. |
#2
|
||||
|
||||
![]()
That only hides the bookmarks on your system. It doesn't affect their presence in the document or whether others might see them. When using formfields this way, ideally you'd omit their internal bookmark names except for the few you want to use for cross-referencing. If that still leaves too many unwanted bookmarks, you could delete them. To manage the lot in one go you might use a macro like:
Code:
Sub Normalise() Application.ScreenUpdating = False With ActiveDocument If .ProtectionType <> wdNoProtection Then .Unprotect Password:="" End If .Fields.Unlink While .Bookmarks.Count > 0 .Bookmarks(1).Delete Wend End With Application.ScreenUpdating = True End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
![]() |
Tags |
fields, forms |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
dlowrey | Word | 2 | 09-24-2012 09:55 PM |
![]() |
McEwanR | Word | 1 | 09-20-2012 01:34 PM |
![]() |
namedujour | Word | 1 | 09-18-2012 04:42 PM |
![]() |
debseed | Word | 1 | 11-14-2011 01:19 AM |
Word Forms Problems | Only1Iknow | Word | 3 | 07-12-2010 04:41 AM |