The information in this article applies to:
SYMPTOMSIn Visual Basic for Applications, canceling a recursive OnTime macro may be difficult when the earliestTime argument is volatile (for example, if you are using the current time). WORKAROUNDMicrosoft 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/overview/overview.aspIn order to cancel an OnTime method, you must call another OnTime method to set the schedule argument equal to False. However, note that this method will not work if the time argument in the OnTime method is set with the Now function. To prepare the first OnTime method so you can cancel it later, create a time variable and use this variable in both cases, as in the following example:
MORE INFORMATIONIn order to cancel the first OnTime method, the second OnTime method must have the same serial number for the time argument as the first OnTime method. When you use a NOW function for the earliestTime argument, such as
Microsoft Excel uses the serial value of Now + TimeValue("00:04:00"). When
the second OnTime method is issued, the serial value of NOW will have
changed. Because the Now function is volatile, you cannot exactly duplicate
the earliestTime argument in the second OnTime method.
REFERENCESFor more information about the OnTime function, choose the Search button in Visual Basic Help and type: ontime Additional query words: XL97 97
Keywords : kbprg kbdta KbVBA |
Last Reviewed: November 9, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |