ID: Q80465
In Microsoft Word for Windows, if you open a document with the Read Only option selected and attempt to access that document's window using the Activate WordBasic command, Word for Windows may display the following error message:
WordBasic Err=504: Window does not exist.
For example, the following macro example results in the WordBasic error
message. The error message does not occur if you open the file as a read-
write file.
Sub Main
Document$="readme.doc"
Activate Document$,1
End Sub
Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/refguide/
NOTE: The document name may be case-sensitive and should be typed correctly
in your macro.
Use one of the following macro examples to activate the window that contains Readme.doc that is opened as read-only:
Sub Main
Document$="Readme.doc (read-only)"
Activate Document$,1
End Sub
-or-
Sub Main
totalWindows = CountWindows()
If totalWindows >=1 then
For i = 1 To totalWindows
If InStr(1, WindowName$(i), "Readme.doc") >= 1 Then \
document$ = WindowName$(i)
End If
Next i
End If
Activate Document$, 1
End Sub
For more information on the Activate command, search for "WordBasic Programming Language" and "Activate" using the Help.
"Using WordBasic," by WexTech Systems and Microsoft, page 150
Additional query words: errmsg err msg
Keywords : kbmacro kbprg kbmacroexample winword word6 winword2 word7 word
Version : 2.x 6.0 6.0a 6.0c 7.0 7.0a
Platform : WINDOWS
Last Reviewed: April 9, 1999