Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

The Pocket Outlook Object Model (POOM) defines several notification options that the are not defined in the Outlook Object Model. For example, Flashing LED and Vibration. To handle this, the ReminderPlaySound was replaced with the more comprehensive ReminderOptionsproperty method ( IAppointment::get_ReminderOptions, IAppointment::put_ReminderOptions, ITask::get_ReminderOptions, ITask::put_ReminderOptions).

You can use a combination of OlReminderOptionsconstants to create compound reminder options. For example, you can have a dialog box appear and also have an LED start blinking by using the following statement:

Copy Code
hr = pAppt->put_ReminderOptions(olDialog | olLED);

Remarks

Setting reminder options clears any options that were already set.

The ReminderOverrideDefault Property is not supported.

See Also