Item_Open, Item_Read etc. Documentation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi:

I've been unable to find any list of "Item_" Functions like Item_Open and
Item_Read documented. I'd like to know what events fire when an item is
opened in design mode and what fires when an item is opened in run mode. The
purpose is that I need some code to run only when an item is opened in run
mode but other code to run in both design and run modes when an item is
opened from either a Choose form dialogue, a Design form dialogue or as a
saved item.

Thanks for your help.
 
They're all documented in the object browser (F2 in VBA and many other IDEs). Look under MailItem, AppointmentItem, etc., but there's no event specific to opening a form in design mode.

The easiest way to see what events fire when is to add each event handler to your form's code and include a MsgBox statement to tell you which event fired.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
I've been unable to find any list of "Item_" Functions like Item_Open and
Item_Read documented. I'd like to know what events fire when an item is
opened in design mode and what fires when an item is opened in run mode. The
purpose is that I need some code to run only when an item is opened in run
mode but other code to run in both design and run modes when an item is
opened from either a Choose form dialogue, a Design form dialogue or as a
saved item.
Go to www.slovaktech.com and find out what Ken's latest book is, then buy it.
 
Back
Top