Capturing Reminder Event without Outlook running

  • Thread starter Dennis K. Sebenick
  • Start date
D

Dennis K. Sebenick

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
 
D

Dmitry Streblechenko

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
 
D

Dennis K. Sebenick

Thank you very much. You certainly know your stuff with outlook. I
have been using Outlook Redemption for quite a while now, and it's
been quite a savior to our program.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top