I've developed a form with tables and form fields. Protection is controlled with the following code.
ActiveDocument.Protect Password:=MyPassword, NoReset:=True, Type:=wdAllowOnlyFormFields
Problem is, form fields can be replicated/duplicated through the use of the Enter key. That is, with a form field selected, pressing the Enter key adds a new line where it adds a duplicate form field.
Is it possible to prevent this functionality and still permit form field editing?
Thanks.