I have created a Word document with drop down lists. Is it possible for word to lock these once they have been chosen so that the client can not change them once they have been sent out?
Sure - or even easier - have a macro run when the user exits the last formfield:
Sub UnlinkFields()
If ActiveDocument.ProtectionType <> wdNoProtection Then
ActiveDocument.Unprotect Password:=""
End If
Selection.WholeStory
Selection.Fields.Unlink
Selection.HomeKey
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.