Ken,
The application does have another form that also has an ontimer event, but
as far as I know there was no errors.
Private Sub Form_Timer()
On Error GoTo HandleErr
Me.Requery
Me.TimerInterval = Me.UpdateInterval
FindESBWork
SendToDataRocket
ImportESB
ProcessESB
AutoSchedule
ExitHere:
Exit Sub
' Error handling block added by VBA Code Commenter and Error Handler Add-In.
DO NOT EDIT this block of code.
' Automatic error handler last updated at 04 May 2004 08:42:57
HandleErr:
If Err.Number <> 2501 Then
DoCmd.SetWarnings False
DoCmd.RunSQL "UPDATE [My Company Information] SET MMaxError =
'MobileMax: Form_Timer-> " & Err.Description & "'"
DoCmd.SetWarnings True
ReportError "Error " & Err.Number & ": " & Err.Description,
"Form_ESB.Form_Timer"
End If
Resume ExitHere
' End Error handling block.
End Sub
Ken Snell said:
Is an error occurring during the operation of the program that is being run?
What is the code for the timer event? What else are you doing in the
database while the timer code is running?
--