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 » Add-ins for Outlook
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Putting an add-in in the official Outlook list



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old November 3rd 06, 06:31 PM posted to microsoft.public.outlook.program_addins
Dewey
external usenet poster
 
Posts: 26
Default Putting an add-in in the official Outlook list

Hi
I have a COM add-in that I'd like to have show up in the official list so
users can remove it at will. (Under Tools-Options-Other tab-Advanced
Options-COM Add-Ins), but despite the fact that the add-in appears to work
just fine, it isn't showing up in that list. Not to mention the Add-In
manager list (right on top of the "COM Add-Ins" button metioned). How does
one get their add-in on that list? I'm using the "standard template" seen in
many a Microsoft article about COM building, implementing the
IDTExtensibility2 interface for Outlook 2003.

Thanks a lot!
-Josh
  #2  
Old November 3rd 06, 06:47 PM posted to microsoft.public.outlook.program_addins
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Putting an add-in in the official Outlook list

Your add-in needs to be installed in the HKCU registry hive rather than
HKLM.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Dewey" wrote in message
news
Hi
I have a COM add-in that I'd like to have show up in the official list so
users can remove it at will. (Under Tools-Options-Other tab-Advanced
Options-COM Add-Ins), but despite the fact that the add-in appears to
work
just fine, it isn't showing up in that list. Not to mention the Add-In
manager list (right on top of the "COM Add-Ins" button metioned). How
does
one get their add-in on that list? I'm using the "standard template" seen
in
many a Microsoft article about COM building, implementing the
IDTExtensibility2 interface for Outlook 2003.

Thanks a lot!
-Josh



  #3  
Old November 3rd 06, 09:57 PM posted to microsoft.public.outlook.program_addins
Dewey
external usenet poster
 
Posts: 26
Default Putting an add-in in the official Outlook list

Any idea where that key is located?

"Dmitry Streblechenko" wrote:

Your add-in needs to be installed in the HKCU registry hive rather than
HKLM.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Dewey" wrote in message
news
Hi
I have a COM add-in that I'd like to have show up in the official list so
users can remove it at will. (Under Tools-Options-Other tab-Advanced
Options-COM Add-Ins), but despite the fact that the add-in appears to
work
just fine, it isn't showing up in that list. Not to mention the Add-In
manager list (right on top of the "COM Add-Ins" button metioned). How
does
one get their add-in on that list? I'm using the "standard template" seen
in
many a Microsoft article about COM building, implementing the
IDTExtensibility2 interface for Outlook 2003.

Thanks a lot!
-Josh




  #4  
Old November 3rd 06, 11:57 PM posted to microsoft.public.outlook.program_addins
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Putting an add-in in the official Outlook list

HKEY_CURRENT_USER\Software\Microsoft\Office\Outloo k\AddIns
HKEY_LOCAL_MACHINE\Software\Microsoft\Office\Outlo ok\AddIns

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Dewey" wrote in message
...
Any idea where that key is located?

"Dmitry Streblechenko" wrote:

Your add-in needs to be installed in the HKCU registry hive rather than
HKLM.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Dewey" wrote in message
news
Hi
I have a COM add-in that I'd like to have show up in the official list
so
users can remove it at will. (Under Tools-Options-Other
tab-Advanced
Options-COM Add-Ins), but despite the fact that the add-in appears to
work
just fine, it isn't showing up in that list. Not to mention the Add-In
manager list (right on top of the "COM Add-Ins" button metioned). How
does
one get their add-in on that list? I'm using the "standard template"
seen
in
many a Microsoft article about COM building, implementing the
IDTExtensibility2 interface for Outlook 2003.

Thanks a lot!
-Josh






  #5  
Old November 4th 06, 12:11 AM posted to microsoft.public.outlook.program_addins
Dewey
external usenet poster
 
Posts: 26
Default Putting an add-in in the official Outlook list

Ahhh...I see now. When I started my project, I used a wizard in VB.net that
asked if I wanted my Add-In to be available to just the logged in user, or
everyone on the computer. I chose everyone. Any idea how I can change it in
my project, now that it's well beyond the new stage?

Thanks again for all your help


"Dmitry Streblechenko" wrote:

HKEY_CURRENT_USER\Software\Microsoft\Office\Outloo k\AddIns
HKEY_LOCAL_MACHINE\Software\Microsoft\Office\Outlo ok\AddIns

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Dewey" wrote in message
...
Any idea where that key is located?

"Dmitry Streblechenko" wrote:

Your add-in needs to be installed in the HKCU registry hive rather than
HKLM.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Dewey" wrote in message
news Hi
I have a COM add-in that I'd like to have show up in the official list
so
users can remove it at will. (Under Tools-Options-Other
tab-Advanced
Options-COM Add-Ins), but despite the fact that the add-in appears to
work
just fine, it isn't showing up in that list. Not to mention the Add-In
manager list (right on top of the "COM Add-Ins" button metioned). How
does
one get their add-in on that list? I'm using the "standard template"
seen
in
many a Microsoft article about COM building, implementing the
IDTExtensibility2 interface for Outlook 2003.

Thanks a lot!
-Josh






  #6  
Old November 4th 06, 04:36 PM posted to microsoft.public.outlook.program_addins
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Putting an add-in in the official Outlook list

I don't have a copy of VS on this machine, so I can't check, but it should
be in one of the config files in your project.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Dewey" wrote in message
...
Ahhh...I see now. When I started my project, I used a wizard in VB.net
that
asked if I wanted my Add-In to be available to just the logged in user, or
everyone on the computer. I chose everyone. Any idea how I can change it
in
my project, now that it's well beyond the new stage?

Thanks again for all your help


"Dmitry Streblechenko" wrote:

HKEY_CURRENT_USER\Software\Microsoft\Office\Outloo k\AddIns
HKEY_LOCAL_MACHINE\Software\Microsoft\Office\Outlo ok\AddIns

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Dewey" wrote in message
...
Any idea where that key is located?

"Dmitry Streblechenko" wrote:

Your add-in needs to be installed in the HKCU registry hive rather
than
HKLM.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Dewey" wrote in message
news Hi
I have a COM add-in that I'd like to have show up in the official
list
so
users can remove it at will. (Under Tools-Options-Other
tab-Advanced
Options-COM Add-Ins), but despite the fact that the add-in appears
to
work
just fine, it isn't showing up in that list. Not to mention the
Add-In
manager list (right on top of the "COM Add-Ins" button metioned).
How
does
one get their add-in on that list? I'm using the "standard
template"
seen
in
many a Microsoft article about COM building, implementing the
IDTExtensibility2 interface for Outlook 2003.

Thanks a lot!
-Josh








 




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
Putting Them All Back? Ron Outlook Express 9 September 8th 06 09:48 PM
when putting entries into calender it says could not save item tkk Outlook - Calandaring 0 July 12th 06 03:28 AM
Putting emails from one computer to the other one Baronnn Outlook Express 2 June 26th 06 09:04 PM
Outlook putting Word attachments inline as garbage KenW Outlook - Installation 0 June 22nd 06 02:02 AM
Putting Hard Drives in the folder lists [email protected] Outlook - General Queries 1 February 25th 06 02:22 PM


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