WD2000: Closing Document with AutoClose/Document_Close Appears to Hang Browser

ID: Q210582


The information in this article applies to:


SYMPTOMS

When you open a Word document in an Internet browser, moving to a previous page appears to make the Internet browser stop responding (hang). An hourglass icon appears until you select the Word icon on the taskbar.


CAUSE

When you open a document in an Internet browser and the document contains an AutoClose or Document_Close event macro that displays a message box, moving to a previous page results in the message box appearing behind the browser. An hourglass is displayed until you select the Word icon on the taskbar. The message box then appears in front of the browser.


WORKAROUND

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/

To work around this problem, you can add the Visual Basic for Applications command line Application.WindowState = wdWindowStateMinimize to your AutoClose or Document_Close event macro.

The following example Visual Basic for Applications AutoClose macro demonstrates this workaround:

Sub AutoClose()

   ' Minimize Word.
   Application.WindowState = wdWindowStateMinimize

   ' Display a message.
   MsgBox "Your message"

End Sub 


STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article.

Additional query words: vba


Keywords          : kbdta kbwordvba wd2000 
Version           : WINDOWS:2000
Platform          : WINDOWS 
Issue type        : kbbug 

Last Reviewed: May 13, 1999