I need to be able to do a find (Ctrl +F) in a table. The table is in a
protected document. The the tables within the documents are huge. The find
(binoculars) and Ctrl + F work when the document is not protected. Once
protected the binolulars fade and the the button is not usable.
I very much appreciate your consideration for help.
See the article "How to enable the spellchecker in a protected document" at:
http://word.mvps.org/FAQs/MacrosVBA/SpellcheckProtectDoc.htm

Signature
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.
Hope this helps,
Doug Robbins - Word MVP
>I need to be able to do a find (Ctrl +F) in a table. The table is in a
> protected document. The the tables within the documents are huge. The
> find
> (binoculars) and Ctrl + F work when the document is not protected. Once
> protected the binolulars fade and the the button is not usable.
> I very much appreciate your consideration for help.
Sorry, that was the wrong answer, but you will have to unprotect the
documnet, either manually or by using code such as the following which will
reprotect it after the Edit Find dialog is dismissed:
With ActiveDocument
.Unprotect
Dialogs(wdDialogEditFind).Show
.Protect wdAllowOnlyFormFields, NoReset
End With

Signature
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.
Hope this helps,
Doug Robbins - Word MVP
>I need to be able to do a find (Ctrl +F) in a table. The table is in a
> protected document. The the tables within the documents are huge. The
> find
> (binoculars) and Ctrl + F work when the document is not protected. Once
> protected the binolulars fade and the the button is not usable.
> I very much appreciate your consideration for help.