ACC2: TimerInterval Property Limited to 65,535 MillisecondsLast reviewed: May 7, 1997Article ID: Q124390 |
The information in this article applies to:
SYMPTOMSModerate: Requires basic macro, coding, and interoperability skills. In Microsoft Access version 1.x or 2.0, setting a form's TimerInterval property to a value greater than 65,535 milliseconds (about 1 minute, 5 seconds) generates the following error message:
Invalid setting for TimerInterval property; correct values are from 0 to 65,535 milliseconds.NOTE: In Microsoft Access for Windows 95 version 7.0, the maximum interval is 2,147,483,647 (about 24 days, 20 hours, 31 minutes, 24 seconds).
RESOLUTIONIf you need to run code in intervals greater than 1 minute, set the TimerInterval property to 60,000 to execute the Timer event in intervals of 1 minute. In the Timer event, increment a static counter variable to count the number of minutes expired. When the counter reaches the interval you want to use, reset the counter and run the code.
STATUSThis behavior no longer occurs in Microsoft Access version 7.0.
MORE INFORMATIONThe following example demonstrates how to create a form that will display a message box every 5 minutes:
REFERENCESFor information about creating event procedures, search for "event procedures," and then "Creating an Event Procedure" using the Microsoft Access Help menu. For more information about the TimerInterval property, search for "TimerInterval," and then "TimerInterval Property" using the Microsoft Access Help menu. For more information about the Timer event, search for "Timer," and then "Timer Event" using the Microsoft Access Help menu. |
Keywords : FmsProp kberrmsg kbusage
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |