Hi KD. I could not find any recursion and I was also unable to test your code. Evenso, this is worth a try as I suspect that you are stacking up calls to OnTime.
Option Explicit
Global Poll_Timer As Integer
Global RunCode As Boolean
Dim Timer_Interval As Double
Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Private RunNext As Date
Sub Auto_Open()
PollTimer = 1 'On Open Start Poll Timer Counts at 1
Call Start
End Sub
Sub Start()
Dim Interval As Double
RunCode = True 'Set True at Startup
Interval = CDbl(Range("L1").Value) 'Get the Interval Value (For Time Incrementing) from Cell L1
Call Timer(Interval)
End Sub
Sub KillTimer()
On Error Resume Next
Application.OnTime RunNext, "FcCalls", False
End Sub
Sub Timer(Optional ByVal Interval As Double)
KillTimer
If Interval > 0 Then Timer_Interval = Interval 'Sends Interval Time from Cell L1 if > 0
If Timer_Interval > 0 Then
RunNext = (Now + Timer_Interval)
Application.OnTime RunNext, "FcCalls" 'Update Time + 1 sec
End If
End Sub
Sub FcCalls() 'Sub to call all System Functions
If RunCode = True Then
Call UpdateTime
Call Watchdog
Call Timer
End If
End Sub
Sub UpdateTime()
Sheet1.txtTime.Value = CStr(Time) 'Updates Current Time Cell
End Sub
Sub Watchdog()
Dim Poll_Timer_Countdown As Integer
Dim fPath As String
Dim fName As String
Dim fName_Print As String
fPath = Sheet1.Range("G5") 'Get file path from Cell G5
fName = Sheet1.Range("M6") 'Get file name from Cell M6
strDate = Format(Date, "_mm_dd_yy") 'Append date stamp to filename for unique ID
Sheet1.txtWritePath.Value = fPath & fName & strDate 'Update Current Save Path to Cell H3
fName_Print = fPath & fName & strDate 'Generate file name for saving file
Poll_Timer = Poll_Timer + 1 'Increment in seconds a poll timer for poll trigger
Poll_Timer_Countdown = 3600 - Poll_Timer 'Reverse second output for countdown to next poll
Sheet1.txtNextPoll.Value = Poll_Timer_Countdown 'Display poll countdown in seconds
Sheet1.txtNextPollMin.Value = Format(Poll_Timer_Countdown / 60, "00.00") 'Display poll countdown in minutes
If Poll_Timer_Countdown < 1 Then
Sheet1.Range("A1") = Now() 'Change value in Cell A1 to Prompt New Poll
Poll_Timer = 1 'Resets for Next Poll
End If
If Sheet1.txtPrintTime.Value = Sheet1.txtTime.Value Then
On Error GoTo PrintError
Sheet1.PrintOut 'Print Report at Set Time
On Error GoTo FileError
Sleep (1000) 'Pause 1 second before continuing
'The following code is to generate and save a csv file backup
ChDir fPath
Workbooks.Open Filename:=fPath & "DailyReport.csv"
Windows("cam_report_Master.xls").Activate
Range("B9:N66").Select
Selection.Copy
Windows("DailyReport.csv").Activate
Range("B1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
Application.DisplayAlerts = False
ActiveWorkbook.SaveAs Filename:=fName_Print, _
FileFormat:=xlCSV, Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, CreateBackup:=False
ActiveWindow.Close
Range("A9").Select
Application.DisplayAlerts = True
'***End CSV File Code***
Exit Sub
PrintError: ' Error handler in event no printer is found
MsgBox "Print Error: Check your printer, network connections."
End If
Exit Sub
FileError: ' Error handler in event no file can be generated
MsgBox "File Saving Error: An error occured while saving the daily report file. Check your filename and path."
End Sub
Bookmarks