A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

How do I add a new option in the context menu(Outlook)?



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old March 14th 06, 04:51 PM posted to microsoft.public.outlook.program_forms
Outllok - context menus aad ins
external usenet poster
 
Posts: 1
Default How do I add a new option in the context menu(Outlook)?

How do I add a new option in the context menu in Outlook?
  #2  
Old March 14th 06, 05:03 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default How do I add a new option in the context menu(Outlook)?

Outlook does not directly expose the right-click context menu in its CommandBars collection. You will, however, see a new right-click command is when the item selected is using a custom form that includes one or more custom actions. You can also add a custom action without using a custom form, as demonstrated at http://www.outlookcode.com/codedetail.aspx?id=526

Richard Kagerer has posted a code sample at http://www.outlookcode.com/codedetail.aspx?id=314 that shows how you might trick Outlook into exposing the context menu through Explorer.CommandBars.

The C++ sample add-in at http://www.codeproject.com/atl/outlook2k3addin.asp also shows a technique for working with the context menu.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Outllok - context menus aad ins" Outllok - context menus aad wrote in message ...
How do I add a new option in the context menu in Outlook?

  #3  
Old March 16th 06, 08:20 AM posted to microsoft.public.outlook.program_forms
Outllok - context menus aad ins
external usenet poster
 
Posts: 2
Default How do I add a new option in the context menu(Outlook)?

Thank you very much for your response.
Is there any possibility to do that by using Delphi programming? What I want
to do is when somone right clicks on an email, the context menu that appears
must contain another link with a new functionality - exporting my email in
another format and save it on the disk.



"Sue Mosher [MVP-Outlook]" wrote:

Outlook does not directly expose the right-click context menu in its CommandBars collection. You will, however, see a new right-click command is when the item selected is using a custom form that includes one or more custom actions. You can also add a custom action without using a custom form, as demonstrated at http://www.outlookcode.com/codedetail.aspx?id=526

Richard Kagerer has posted a code sample at http://www.outlookcode.com/codedetail.aspx?id=314 that shows how you might trick Outlook into exposing the context menu through Explorer.CommandBars.

The C++ sample add-in at http://www.codeproject.com/atl/outlook2k3addin.asp also shows a technique for working with the context menu.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Outllok - context menus aad ins" Outllok - context menus aad wrote in message ...
How do I add a new option in the context menu in Outlook?


  #4  
Old March 16th 06, 12:26 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default How do I add a new option in the context menu(Outlook)?

Given that all the available methods are unsupported, they're probably as likely to work in Delphi as in any other code environment.
--

"Outllok - context menus aad ins" om wrote in message ...
Thank you very much for your response.
Is there any possibility to do that by using Delphi programming? What I want
to do is when somone right clicks on an email, the context menu that appears
must contain another link with a new functionality - exporting my email in
another format and save it on the disk.



"Sue Mosher [MVP-Outlook]" wrote:

Outlook does not directly expose the right-click context menu in its CommandBars collection. You will, however, see a new right-click command is when the item selected is using a custom form that includes one or more custom actions. You can also add a custom action without using a custom form, as demonstrated at http://www.outlookcode.com/codedetail.aspx?id=526

Richard Kagerer has posted a code sample at http://www.outlookcode.com/codedetail.aspx?id=314 that shows how you might trick Outlook into exposing the context menu through Explorer.CommandBars.

The C++ sample add-in at http://www.codeproject.com/atl/outlook2k3addin.asp also shows a technique for working with the context menu.



"Outllok - context menus aad ins" Outllok - context menus aad wrote in message ...
How do I add a new option in the context menu in Outlook?


  #5  
Old March 16th 06, 02:37 PM posted to microsoft.public.outlook.program_forms
Outllok - context menus aad ins
external usenet poster
 
Posts: 2
Default How do I add a new option in the context menu(Outlook)?

You have right...it not depends on the language programming...my question is:
it is doable what I want to do?

"Sue Mosher [MVP-Outlook]" wrote:

Outlook does not directly expose the right-click context menu in its CommandBars collection. You will, however, see a new right-click command is when the item selected is using a custom form that includes one or more custom actions. You can also add a custom action without using a custom form, as demonstrated at http://www.outlookcode.com/codedetail.aspx?id=526

Richard Kagerer has posted a code sample at http://www.outlookcode.com/codedetail.aspx?id=314 that shows how you might trick Outlook into exposing the context menu through Explorer.CommandBars.

The C++ sample add-in at http://www.codeproject.com/atl/outlook2k3addin.asp also shows a technique for working with the context menu.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Outllok - context menus aad ins" Outllok - context menus aad wrote in message ...
How do I add a new option in the context menu in Outlook?


  #6  
Old March 16th 06, 02:47 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default How do I add a new option in the context menu(Outlook)?

The only possible answer is maybe -- try one or more of the methods outlined below -- and if you do it with anything other than a custom action, it will be unsupported.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"Outllok - context menus aad ins" om wrote in message ...
You have right...it not depends on the language programming...my question is:
it is doable what I want to do?

"Sue Mosher [MVP-Outlook]" wrote:

Outlook does not directly expose the right-click context menu in its CommandBars collection. You will, however, see a new right-click command is when the item selected is using a custom form that includes one or more custom actions. You can also add a custom action without using a custom form, as demonstrated at http://www.outlookcode.com/codedetail.aspx?id=526

Richard Kagerer has posted a code sample at http://www.outlookcode.com/codedetail.aspx?id=314 that shows how you might trick Outlook into exposing the context menu through Explorer.CommandBars.

The C++ sample add-in at http://www.codeproject.com/atl/outlook2k3addin.asp also shows a technique for working with the context menu.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Outllok - context menus aad ins" Outllok - context menus aad wrote in message ...
How do I add a new option in the context menu in Outlook?


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I add the Label color option to my appointments screen? townieflo Outlook - Calandaring 3 March 2nd 06 01:46 PM
Identities option missing in File menu Kevin Bean Outlook Express 13 February 27th 06 11:11 PM
Adding Outlook Express to my start menu MP Boettger Outlook - General Queries 1 February 22nd 06 05:45 PM
Context Menu not present Mono Outlook Express 5 February 7th 06 06:22 PM
Outlook Calendar: Add option to put diagonal slash thru past date Jay Freedman Outlook - Calandaring 0 January 10th 06 07:26 PM


All times are GMT +1. The time now is 06:54 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.