Processing the Folder_OnTimer Event

Because the design for the CML/LitCrit application did not call for timer events to play a role in the processing of critiques in Microsoft Outlook, this event is not monitored in the LitCrit public folder.

If it is later decided that critiques should expire after a given period of time, code could be added to the Folder_OnTimer subroutine. The subroutine in its current unused state is reproduced here:

' DESCRIPTION: This event is fired when the timer on the folder expires
Public Sub Folder_OnTimer()
    On Error Resume Next
        'Doing Nothing so far
End Sub