Macro to Determine If the Current Document Is Read-OnlyLast reviewed: August 5, 1997Article ID: Q126023 |
The information in this article applies to:
- Microsoft Word for Windows, versions 6.0, 6.0a, 6.0c
SUMMARYWhen you are writing a macro, you may need to know if the current document is open as a read-only document. This article includes a sample macro that you can use to determine whether the current document is read-only.
MORE INFORMATIONWARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR OWN RISK. Microsoft provides this macro code "as is" without warranty of any kind, either express or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.
Sub MainIf InStr(WindowName$(), "(Read-Only)") <> 0 Or InStr(WindowName$(), \ "(Copy)") <> 0 ThenMsgBox "File is read-only" End If End SubIf the current document was opened on a read-only basis, the WindowsName$() function will include the text "(Read-Only)" or "(Copy)." A document is opened on a read-only basis if the read-only file attribute is set or if another user has already opened the file with read-write privileges. A file can also be saved with the Read-Only Recommended option set, giving the user the option of opening the file on a read-only basis or not.
REFERENCES"Microsoft Word Developer's Kit," for version 6.0, page 829
|
KBCategory: kbmacro
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |