I want to extend MS Outlook so that when a calendar reminder pops up, I can run a VBA hook that can run an external program (like a batch script). In my case, I want to "forward" the reminder to a Linux desktop since I work in both environments and I don't always have the Windows desktop visible.

I see an example at http://office.microsoft.com/en-us/outlook-help/HV080803406.aspx and have opened VBA Developer view in MS outlook 2010 and inserted a class module and added that VBA code, but I do not see how to activate this code - when a reminder pops up, this code is not activated.

Update

Here is what I ended up adding to Outlook's ThisOutlookSession to run an external batch script when a reminder pops up.

Public WithEvents objReminders As Outlook.Reminders

Private Sub Application_Startup()
    Set objReminders = Application.Reminders
End Sub

Private Sub objReminders_ReminderFire(ByVal ReminderObject As Reminder)
    Cmd = "C:\path\to\my\reminder-hook.cmd" & " " & ReminderObject.Caption
    Call Shell(Cmd, vbHide)
End Sub
link|improve this question

67% accept rate
Maybe put it in the ThisOutlookSession module and restart Outlook? – Jean-François Corbett Aug 15 '11 at 8:03
Thank you for the suggestion, Jean-François. I tried that and nothing happened at first. (I had updated the code to open a MsgBox and I never see it.) When I open the Developer Tools after restarting, Outlook 2010 presents a security warning about macros, so I enabled macros. Eventually, this code ran. It seems I must do this each time I restart Outlook. My Outlook Trust Center macro settings are to display notifications for all macros. Maybe I'll also have to dig into the selfsign aspect of VBA. If you repost this as an answer instead of a comment, I can mark it as an accepted answer. – djb Aug 15 '11 at 14:05
Will do. I'm glad my shot from the hip worked. – Jean-François Corbett Aug 15 '11 at 14:50
feedback

1 Answer

up vote 1 down vote accepted

Upgraded from comment:

Put it in the ThisOutlookSession module and restart Outlook.

link|improve this answer
Works for me. Note that one must also enable macros in Outlook; that's a different issue. – djb Aug 15 '11 at 17:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.