Microsoft KB Archive/220438

From BetaArchive Wiki
Knowledge Base


Article ID: 220438

Article Last Modified on 6/17/2005



APPLIES TO

  • Microsoft Word 2000 Standard Edition



This article was previously published under Q220438

SYMPTOMS

When you program a Document_Close event to run Visual Basic for Applications commands when closing a document and you use the following commands to quit Word while the document is still open, the Document_Close event runs twice:

Application.Quit
WordBasic.FileExit
WordBasic.ExitWindows
Application.Tasks.ExitWindows


WORKAROUND

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers 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 requirements. To work around this problem, you can set a variable flag to bypass the second occurrence of the Document_Close event.

For example:

Sub Document_Close()

   Dim dcFlag As Boolean
   If dcFlag = True Then Exit Sub   ' If we have been here before, exit,
   MsgBox "MyDoc Close Event"       ' else run commands,
   dcFlag = True                    ' then set flag to equal True.

End Sub
                

STATUS

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

MORE INFORMATION

For more information about how to use the sample code in this article, click the article number below to view the article in the Microsoft Knowledge Base:

212536 OFF2000: How to Run Sample Code from Knowledge Base Articles



Additional query words: vba

Keywords: kbbug kbpending KB220438