How to turn off the reviewing, editing, and view feature?

Anonymous
2022-09-01T19:39:16+00:00

Since the reviewing, editing, and viewing feature I cannot copy and paste from a read only document. I have to gain access to even copy and paste. My job requires me to copy and paste from upwards of 10 documents. Since word won't let me copy and paste from a read-only or viewing document I have to check them out of our SVN every time. Does anyone know how to turn this feature off and go back to the original word?

Microsoft 365 and Office | Word | Other | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

89 answers

Sort by: Oldest
  1. Anonymous
    2023-02-06T14:35:32+00:00

    I'm not sure if it will help anyone else but I figured out how my system was doing this. I changed True to false below.

    Set wddoc = wdapp.Documents.Open(FileName:="c:\templates\contracts\Agreement.docx", ReadOnly:=False)

    My process has been this was for 10+ years with no issue populating the bookmarks. I'm guessing it is a security update that changed how it processes.

    Like I said probably just my condition but wanted to put it out there.

    Scott

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2023-02-06T15:07:40+00:00

    If you lock the document with permissions set to "filling in forms" only the grey fillable sections should be editable. Try it out and let me know.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2023-02-06T15:46:25+00:00

    We tried setting read only to false on our but still having the same issues. Our process has been the same for the past 5 years and no issues until the recent word update. Our process references the templates and pushes the data into them. We ran it step by step and it looks like its having issues when trying to reference the template because its opening up in read only mode even though we set it to ReadOnly:=False.

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2023-02-06T15:51:17+00:00

    We tried that and it unlocked the whole document making it editable to all.

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2023-02-06T15:55:36+00:00

    Is the document unprotected? Here is the line after

    wddoc.unprotect password:=""

    Scott

    Was this answer helpful?

    0 comments No comments