Display properties of custom form on that form

  • Thread starter Thread starter Wolfgang Kais
  • Start date Start date
W

Wolfgang Kais

Dear Newsgroup.

Is there a way to display the version and form number (configured on the
properties tab in form design view) on the form when it's opened?
(Outlook 2003 SP2)
 
Two methods:

1) Use CommandBars techniques to execute the Help | About This Form command.

2) Put code in the Item_Open event handler to read that information from the Item.FormDescription properties and display it wherever you like.

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

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
2) is what I wanted.
Tha-hanks!

Two methods:

1) Use CommandBars techniques to execute the Help | About This Form command.

2) Put code in the Item_Open event handler to read that information from the
Item.FormDescription properties and display it wherever you like.

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

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top