Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

Symptoms

When you try to programmatically open a Microsoft Word document, the document opens as a read-only document and you cannot edit the document.

When you add the code

   ReadOnly:=False

the document still opens as a read-only document.

When you open the same document using the Open command, the following message appears:

PathName should be opened as read-only unless changes to it need to be saved. Open as read-only?

You can open the document for editing by clicking Yes on the message.

Cause

This problem occurs because Visual Basic opens any document with the ReadOnlyRecommended attribute set to true as a read-only document, even if you attempt to set the ReadOnly attribute to false.

Note The following example applies to Word 2003 and 2002:

  1. Start Word, and then create a new document.

  2. On the Tools menu, click Options.

  3. In the Options dialog box, on the Security tab, click to select the Read-only recommended check box.

  4. Save the document as C:\Test.doc.

  5. Close the document.

  6. Press ALT+F11 to start the Visual Basic editor.

  7. On the Insert menu, click Module.

  8. In the Module sheet, type the following code:

    Sub Test()

    Documents.Open FileName:="C:\Test.doc", ReadOnly:=False

    End Sub
  9. Press ALT+F11 to return to Word.

  10. On the Tools menu, point to Macro, and then click Macros.

  11. In the Macro name list, click Test, and then click Run.

The document opens as a read-only document.

Workaround

To work around this problem, use the following Word Basic macro instead of the Visual Basic macro shown in step 8 of the "Cause" section of this article:

Sub Test()

WordBasic.FileOpen Name:="C:\Test.doc"

End Sub

With this macro the file can be edited after it opens.

Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×