![]() |
Shortcut to Organizational Form in the Menubar ??
Hello all,
We created and published a custom form to the Exchange organizational forms library. We want to open that custom form from a shortcut in the menubar. We were only able put a shortcut to the choose form dialog. Is there a programmatic approach to open the custom organizational form without opening the choose form dialog? Thanks in advance. |
Shortcut to Organizational Form in the Menubar ??
In Outlook add-in, to create a new instance of a custom form programmatically, use the Add method on the target folder's Items collection:
Set newItem = targetFolder.Items.Add("IPM.Post.YourFormName") If it's a message form, use the Drafts folder as the target. If the target is a default folder, you can use the Namespace.GetDefaultFolder method to return it as a MAPIFolder object. To create an item in another person's mailbox, use Namespace.GetSharedDefaultFolder to get the MAPIFolder Otherwise, you can use the code at http://www.outlookcode.com/d/code/getfolder.htm to walk the folder hierarchy and return the MAPIFolder corresponding to a given path string. See http://www.outlookcode.com/article.aspx?id=56 for tools and other ideas. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Trinadh Varma" Trinadh wrote in message ... Hello all, We created and published a custom form to the Exchange organizational forms library. We want to open that custom form from a shortcut in the menubar. We were only able put a shortcut to the choose form dialog. Is there a programmatic approach to open the custom organizational form without opening the choose form dialog? Thanks in advance. |
All times are GMT +1. The time now is 07:53 PM. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com