XL97: Unexpected Results Using the Caller Property in a MenuLast reviewed: March 13, 1998Article ID: Q172103 |
The information in this article applies to:
SYMPTOMSWhen you use the Caller property in a Visual Basic for Applications macro to determine which menu item has been clicked, you may get incorrect results.
WORKAROUNDMicrosoft provides examples of Visual Basic for Applications procedures 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. The Visual Basic procedures in this article are provided 'as is' and Microsoft does not guarantee that they can be used in all situations. While Microsoft support engineers can help explain the functionality of a particular macro, they will not modify these examples to provide added functionality, nor will they help you construct macros to meet your specific needs. If you have limited programming experience, you may want to consult one of the Microsoft Solution Providers. Solution Providers offer a wide range of fee-based services, including creating custom macros. For more information about Microsoft Solution Providers, call Microsoft Customer Information Service at (800) 426-9400. The Caller property for a menu item returns an array of information about that menu item. The fourth element of the array should equal zero. The following sample macro illustrates how to set the fourth element of the array to zero. This emulates the behavior of earlier versions of Microsoft Excel.
Sub Run_Menu_Item() z = Application.Caller z(4) = 0 For Each i In z MsgBox i Next End Sub STATUSMicrosoft has confirmed this to be a problem in Microsoft Excel 97 for Windows. This problem was corrected in Microsoft Excel 97 for Windows, Service Release 1.
REFERENCESFor more information about the Caller property, click the Office Assistant in the Visual Basic Editor, type "caller" (without the quotation marks), click Search, and then click to view the "Caller Property" topic. NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If Microsoft Help is not installed on your computer, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q120802 TITLE : Office: How to Add/Remove a Single Office Program or Component |
Additional query words: XL97
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |