XL97: Calling RunAutoMacros Method More than Once Fails

ID: Q157308


The information in this article applies to:


SYMPTOMS

In Microsoft Excel 97, a macro that makes a call to the RunAutoMacros method may fail.


CAUSE

If you call the RunAutoMacros method more than once in the same macro, only the first call to RunAutoMacros works. Subsequent calls to run other automatic procedures ("Auto" macros) fail to execute.


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/
If you need to run two or more automatic procedures from another macro, you can use the OnTime method to run both procedures. The following example demonstrates how to do this:

   Sub RunTwoAutoMacros()
       Application.OnTime Now + TimeValue("00:00:01"), "RunAutoOpen"
       Application.OnTime Now + TimeValue("00:00:02"), "RunAutoClose"
   End Sub

   Sub RunAutoOpen()
       ThisWorkbook.RunAutoMacros which:=xlAutoOpen
   End Sub

   Sub RunAutoClose()
       ThisWorkbook.RunAutoMacros which:=xlAutoClose
   End Sub 
When you run the RunTwoAutoMacros macro, the macro instructs Microsoft Excel to run (in order) the two macros RunAutoOpen and RunAutoClose. Because a separate macro contains each RunAutoMacros method, each method works correctly when you run the macro that contains it.


STATUS

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


MORE INFORMATION

In Microsoft Excel, you can use the RunAutoMacros method to run various automatic procedures, such as Auto_Open and Auto_Close, that are contained in your workbook.

In earlier versions of Microsoft Excel, you can call the RunAutoMacros method multiple times in a single macro. In Microsoft Excel 97, however, you can call RunAutoMacros only once inside a single macro; subsequent calls to RunAutoMacros fail.

Additional query words: XL97


Keywords          : kbprg kbdta kbdtacode KbVBA xlvbmigrate 
Version           : WINDOWS:97
Platform          : WINDOWS 
Issue type        : kbprb 

Last Reviewed: July 14, 1999