G Guest Apr 18, 2007 #1 I am creating a Word 2003 form. Is there a macro to remove the drop down form fields once the user has chosen their answer?
I am creating a Word 2003 form. Is there a macro to remove the drop down form fields once the user has chosen their answer?
G Greg Maxey Apr 18, 2007 #2 Seems an odd request as a user may wish to change their mind, but the following macro set to run on exit from each dropdown may suit your needs: Sub OnExitDD() ActiveDocument.Unprotect Selection.Fields.Unlink ActiveDocument.Protect wdAllowOnlyFormFields, NoReset:=True End Sub
Seems an odd request as a user may wish to change their mind, but the following macro set to run on exit from each dropdown may suit your needs: Sub OnExitDD() ActiveDocument.Unprotect Selection.Fields.Unlink ActiveDocument.Protect wdAllowOnlyFormFields, NoReset:=True End Sub