I was following this blog post http://www.slipstick.com/developer/send-email-outlook-reminders-fires/ for reacting to Outlook 2010 Reminder event. However, I kept getting tripped up because the argument passed to my event handler is a string that seems to be the "Subject" property of the reminder item. In my "ThisOutlookSession" I have the simple code below:
Private Sub Application_Reminder(ByVal Item As Object)
post_frm Item
End Sub
Everything piece of documentation tells me that the Item should be an AppointmentItem, MailItem, ContactItem, or TaskItem, but I'm definitely getting a String, instead.
Any idea why?