Microsoft KB Archive/80465

From BetaArchive Wiki

WordBasic Error 504: Window Does Not Exist...Read-Only File

Q80465



The information in this article applies to:


  • Microsoft Word for Windows, versions 2.0, 2.0a, 2.0a-CD, 2.0b, 2.0c, 6.0, 6.0a, 6.0c
  • Microsoft Word for Windows 95, versions 7.0, 7.0a





SYMPTOMS

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 

Resolution

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 a Microsoft Certified Partner or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Partners, please see the following page on the World Wide Web:

http://www.microsoft.com/partner/referral/

For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

http://support.microsoft.com/directory/overview.asp

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 



REFERENCES

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
Issue type :
Technology : kbWordSearch kbWordWSearch


Last Reviewed: December 29, 2000
© 2001 Microsoft Corporation. All rights reserved. Terms of Use.