Hi PosseJohn,
What you need to do is to lock each formfield. For example:
Code:
Private Sub Document_Close()
Dim fFld As FormField, Pwd As String
Pwd = "pw"
With ThisDocument
.Unprotect Password:=Pwd
For Each fFld In .FormFields
fFld.Enabled = False
Next
.Protect Password:=Pwd, NoReset:=True, _
Type:=wdAllowOnlyFormFields, _
UseIRM:=False, EnforceStyleLock:=False
End With
End Sub