XL98: Calling RunAutoMacros Method More than Once Fails (182410)



The information in this article applies to:

  • Microsoft Excel 98 Macintosh Edition

This article was previously published under Q182410

SYMPTOMS

In Microsoft Excel 98 Macintosh Edition, 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. 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. 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 RunAutoOpen macro and the RunAutoClose macro. 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. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

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 98 Macintosh Edition, however, you can call RunAutoMacros only once inside a single macro; subsequent calls to RunAutoMacros fail.

Modification Type:MajorLast Reviewed:6/17/2005
Keywords:kbprb kbProgramming KB182410