Thanks for your input Pete - here's the script I have written at the moment:
VB Code:
Sub ProtectDoc() If ActiveDocument.ProtectionType = wdNoProtection Then ActiveDocument.Protect _ Type:=wdAllowOnlyFormFields, NoReset:=True End If End Sub
My problem is that I want this to activate about 8 seconds after the person opens the document. (The document is unprotected upon opening)... how do I do this (with no manual intervention)?




Reply With Quote