It should fire just fine *if* you log to MAPI. After creating an instance of
Outlook.Application, make sure you have something like the following:
set NS = olApp.GetNamespace("MAPI")
NS.Logon
NS must be dimmed on the same level (global) as olApp.
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"Dennis K. Sebenick" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi there,
> I have a VB6 app where I'm using the Outlook object model, and I'm
> trying to capture the Outlook.Application_Reminder event.
> Unfortunately, this event only seems to fire when outlook is visible.
>
> Is it possible to capture the reminder event without outlook being
> visible?
>
> Dennis