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

.Net Add-in does not work with Outlook 2002 and 2000



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old March 16th 06, 04:10 PM posted to microsoft.public.outlook.program_addins
Osi
external usenet poster
 
Posts: 7
Default .Net Add-in does not work with Outlook 2002 and 2000

Our Dev team has developed a COM that is to be used with Outlook 2003,
2002 and 2000. The code works well with the Outlook 2003 version, but
does not show at all in the other two versions(OL 2000,2002). We have
tried
developing the code using the "Building Outlook 2002 Add-ins with
Visual Basic .NET" method. The COM code that was working was converted
from VB6 to .Net. The regsitry references for the add-in are being
imported using the
Installer.(again this works fine in 2003). What else are we missing
that we are not
doing. Any suggestions?

Ads
  #2  
Old March 16th 06, 04:27 PM posted to microsoft.public.outlook.program_addins
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default .Net Add-in does not work with Outlook 2002 and 2000

Did you install the PIAs for the appropriate Office version on the client machines?

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

"Osi" wrote in message oups.com...
Our Dev team has developed a COM that is to be used with Outlook 2003,
2002 and 2000. The code works well with the Outlook 2003 version, but
does not show at all in the other two versions(OL 2000,2002). We have
tried
developing the code using the "Building Outlook 2002 Add-ins with
Visual Basic .NET" method. The COM code that was working was converted
from VB6 to .Net. The regsitry references for the add-in are being
imported using the
Installer.(again this works fine in 2003). What else are we missing
that we are not
doing. Any suggestions?

  #3  
Old March 16th 06, 04:34 PM posted to microsoft.public.outlook.program_addins
Rog
external usenet poster
 
Posts: 62
Default .Net Add-in does not work with Outlook 2002 and 2000

Which version of the OOM are you using ?
Perhaps if are using the 11.xxxx version and trying to access a
property/method not exposed in Outloook 2000 or Outlook 2002 you are
generating an exception that may not be caught and is causing your
add-in to not work.
Rog

Osi wrote:
Our Dev team has developed a COM that is to be used with Outlook 2003,
2002 and 2000. The code works well with the Outlook 2003 version, but
does not show at all in the other two versions(OL 2000,2002). We have
tried
developing the code using the "Building Outlook 2002 Add-ins with
Visual Basic .NET" method. The COM code that was working was converted
from VB6 to .Net. The regsitry references for the add-in are being
imported using the
Installer.(again this works fine in 2003). What else are we missing
that we are not
doing. Any suggestions?

  #4  
Old March 17th 06, 09:05 PM posted to microsoft.public.outlook.program_addins
Osi
external usenet poster
 
Posts: 7
Default .Net Add-in does not work with Outlook 2002 and 2000

Rog & Sue Mosher:
We compile the code using 9.xxx version. Also all the interops are
located in the application directory. Should i be adding references to
specific Office versions inside the GAC? The Office assembly in the
working windows 2003 machine has 2 office assemblies, one without a
vesion and one with a version of 11.xx. Im assuming that since i have
the one with 11.x on my 2003 office that is why it works.
Does the .Net redistributable have the necessary tools to get the
version specific assemblies? I am in charge of running the Wise
installation for the application, should i be adding them though Wise?
I am new to all of this, and its quite overwhelming to take in all at
once. Thanks for help so far
Gustavo

  #5  
Old March 20th 06, 03:25 PM posted to microsoft.public.outlook.program_addins
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default .Net Add-in does not work with Outlook 2002 and 2000

You need to install the PIAs for the appropriate version of Office on each client machine. this is separate from the .NET Framework installation. I haven't work with the Wise tool.

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

"Osi" wrote in message oups.com...
Rog & Sue Mosher:
We compile the code using 9.xxx version. Also all the interops are
located in the application directory. Should i be adding references to
specific Office versions inside the GAC? The Office assembly in the
working windows 2003 machine has 2 office assemblies, one without a
vesion and one with a version of 11.xx. Im assuming that since i have
the one with 11.x on my 2003 office that is why it works.
Does the .Net redistributable have the necessary tools to get the
version specific assemblies? I am in charge of running the Wise
installation for the application, should i be adding them though Wise?
I am new to all of this, and its quite overwhelming to take in all at
once. Thanks for help so far
Gustavo

  #6  
Old March 20th 06, 06:46 PM posted to microsoft.public.outlook.program_addins
Osi
external usenet poster
 
Posts: 7
Default .Net Add-in does not work with Outlook 2002 and 2000

Downloaded and installed the necessary Outlook.dll Interop Assemblies
from the OfficeXP PIA redistribuatable to the GAC using the gacutil.exe
Still have no menus or controls showing afterward when i launch Outlook
2000 or 2002........

  #7  
Old March 20th 06, 08:11 PM posted to microsoft.public.outlook.program_addins
Rog
external usenet poster
 
Posts: 62
Default .Net Add-in does not work with Outlook 2002 and 2000

The OfficeXP PIAs are not supposed to work pre OUtlook 2003.
that is not to say that won't work, but some methods/properties that are
exposed in the PIA will not work on Outlook 2000/2002
Rog

Osi wrote:
Downloaded and installed the necessary Outlook.dll Interop Assemblies
from the OfficeXP PIA redistribuatable to the GAC using the gacutil.exe
Still have no menus or controls showing afterward when i launch Outlook
2000 or 2002........

  #8  
Old March 21st 06, 02:10 PM posted to microsoft.public.outlook.program_addins
Osi
external usenet poster
 
Posts: 7
Default .Net Add-in does not work with Outlook 2002 and 2000

I contacted a company that facilitates the installation of Interops and
other .Net addins. They say that they have a Office2000 PIA and works
with Outlook, but it still has many bugs so they are not at the
redistribution stage. But from my research everything states otherwise,
that there is no such thing. If there is a office 2000 PIA where is it?
MSDN has nothing related to such a thing.

  #9  
Old March 22nd 06, 03:10 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default .Net Add-in does not work with Outlook 2002 and 2000

See if the information about rebuilding the PIA for Outlook 2002 to use with
Outlook helps. It's at
http://www.microeye.com/resources/res_outlookvsnet.htm

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Osi" wrote in message
ups.com...
I contacted a company that facilitates the installation of Interops and
other .Net addins. They say that they have a Office2000 PIA and works
with Outlook, but it still has many bugs so they are not at the
redistribution stage. But from my research everything states otherwise,
that there is no such thing. If there is a office 2000 PIA where is it?
MSDN has nothing related to such a thing.


  #10  
Old March 22nd 06, 07:09 PM posted to microsoft.public.outlook.program_addins
Osi
external usenet poster
 
Posts: 7
Default .Net Add-in does not work with Outlook 2002 and 2000

I thought I had replied, found out the problem. As it turns out, the
interop that was needed was the Extensibility.dll file. This file is
not redistributed with the .Net framework or the XP PIAs redist. Also I
had to edit a few registry keys. The only thing that i had to to was
because the extensibility is an interop needed with .net, i just
installed it using the gacutil.exe and added regsitery value though a
..bat file. Seems to be working for all OL versions 2000,2002,2003. Also
we did recompile our plugin from a 2000 machine so that we can access
it. So all of these things got our plug in to work.

 




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
VB.net Cannot add userproperties Ben Add-ins for Outlook 2 February 24th 06 10:32 AM
NET Folders calendar in Outlook 2000...can't get sharing informati Brent White Outlook - Calandaring 0 February 17th 06 03:11 PM
CommandbarComboBox-Event in COM Add-In (VB .net 2005) mcp_virtue Outlook and VBA 0 February 12th 06 09:00 PM
Outlook 2002 Find Does Not Work [email protected] Outlook - General Queries 0 January 23rd 06 08:31 PM
best way to support outlook 2000, 2002, and 2003 and .NET Josh Einstein Add-ins for Outlook 1 January 8th 06 07:30 AM


All times are GMT +1. The time now is 12:29 AM.


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