Does anybody have any examples of how to keep my timer from being garbage colleted?? (System.threading namespce)
Code:
'global variable
Dim checkInboxTimer As System.Threading.Timer
'In Class
Dim timerDelegate As Threading.TimerCallback = AddressOf Me.SendFaxResponse
checkInboxTimer = New System.Threading.Timer(timerDelegate, Nothing, 60000, 20000)