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 and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Help Add button Popup



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old February 16th 06, 11:09 AM posted to microsoft.public.outlook.program_vba
Robert
external usenet poster
 
Posts: 2
Default Help Add button Popup

I want to give my user the possibility to select (by right click) an email
from the outlook email grid to have the contextual menu with a new command
button: "send to another software"

I was wondering if it's possible to do this in outlook by using VB6... do
you know if it's possible??


Ads
  #2  
Old February 16th 06, 12:33 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Help Add button Popup

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


"Robert" wrote in message ...
I want to give my user the possibility to select (by right click) an email
from the outlook email grid to have the contextual menu with a new command
button: "send to another software"

I was wondering if it's possible to do this in outlook by using VB6... do
you know if it's possible??


  #3  
Old February 17th 06, 12:04 PM posted to microsoft.public.outlook.program_vba
Robert
external usenet poster
 
Posts: 2
Default Help Add button Popup

Ok. Example It Works..

But i Would Insert Button Not Temporany (Closing outlook Button removed) but
Always(the button Insert outlook permanent)

Thank you

"Sue Mosher [MVP-Outlook]" ha scritto nel messaggio
...
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


"Robert" wrote in message
...
I want to give my user the possibility to select (by right click) an email
from the outlook email grid to have the contextual menu with a new command
button: "send to another software"

I was wondering if it's possible to do this in outlook by using VB6... do
you know if it's possible??




  #4  
Old February 17th 06, 01:00 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Help Add button Popup

I'd never do that in an add-in. What if your user uninstalls or disables the add-in? The user would be left then with an orphaned button that does nothing. Creating buttons with Temporary=True avoids that problem.
--
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


"Robert" wrote in message ...
Ok. Example It Works..

But i Would Insert Button Not Temporany (Closing outlook Button removed) but
Always(the button Insert outlook permanent)

Thank you

"Sue Mosher [MVP-Outlook]" ha scritto nel messaggio
...
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.




"Robert" wrote in message
...
I want to give my user the possibility to select (by right click) an email
from the outlook email grid to have the contextual menu with a new command
button: "send to another software"

I was wondering if it's possible to do this in outlook by using VB6... do
you know if it's possible??




  #5  
Old February 17th 06, 01:47 PM posted to microsoft.public.outlook.program_vba
Tom
external usenet poster
 
Posts: 2
Default Help Add button Popup

I must always interact with my application..

I had read from some part that it could be associated a My DLL to "My custom
Button"

is true?


  #6  
Old February 17th 06, 02:09 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Help Add button Popup

Sorry, but I don't understand the question.

--
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


"Tom" wrote in message ...
I must always interact with my application..

I had read from some part that it could be associated a My DLL to "My custom
Button"

is true?


  #7  
Old February 17th 06, 02:56 PM posted to microsoft.public.outlook.program_vba
Tom
external usenet poster
 
Posts: 2
Default Help Add button Popup

Excuse me..
I'm italian..

i want to insert definitively my personalyzed command button in the outlook
pop-up menu.
I don't want to add it every time that i open outlook. it seems to me that
is possibile to associate a dll or an exe to this command;

P.S I don't want to have an exe in the system memory that check every time
that outlook is open!

is this true?


  #8  
Old February 17th 06, 03:16 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Help Add button Popup

Sounds like what you want to do is build a COM add-in, which is a type of application that loads whenever Outlook loads. See http://www.outlookcode.com/d/comaddins.htm

--
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


"Tom" wrote in message ...
Excuse me..
I'm italian..

i want to insert definitively my personalyzed command button in the outlook
pop-up menu.
I don't want to add it every time that i open outlook. it seems to me that
is possibile to associate a dll or an exe to this command;

P.S I don't want to have an exe in the system memory that check every time
that outlook is open!

is this true?


 




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
Add send/receive button NEUF-ELDER Outlook - Installation 1 September 20th 06 01:49 PM
Junk mail: How to create a button for "Add sender to blocked sender list" Nananana Outlook - General Queries 2 February 2nd 06 12:37 PM
Outlook Popup Sam Add-ins for Outlook 0 February 1st 06 05:37 PM
When I open outlk a popup said the add-in could not be install or Render Outlook - General Queries 2 January 31st 06 07:42 PM
Add others button unavailable Cindy Outlook - Calandaring 7 January 25th 06 05:24 PM


All times are GMT +1. The time now is 05:03 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.