How do I do a 'find' in a table of a protected document?

B

bb1qaz1

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.
 
D

Doug Robbins

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


--
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top