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

Interop or VSTO or ?



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old August 13th 09, 04:54 PM posted to microsoft.public.outlook.program_addins
Glenn Welker
external usenet poster
 
Posts: 2
Default Interop or VSTO or ?

Long time developer of addins but have been out of development for
three years. Last experience was with VB6 and was fairly painless.
Forgive me for asking multiple questions. It seems that they are all
essentially the same topic.

I have no interest in using VB6 at this point but I need advice on how
to move forward into .NET. I am confused as to my options.

Targets currently are Outlook 2003 and 2007. I currently don't need
the new functionality in 2007. This suggests that I can use the VSTO
but.

1. I currently have Office 2007 and VS 2008 installed. I also
installed the 2003PIA but it keeps complaining that it the 2003 pias
aren't installed. Is it possible to develop an addin for 2003 on a
machine with Office 2007 installed?

2. When targeting multiple versions, it seems as though developers are
creating separate dlls. Can these be tied together in a single install
or are other developers creating single dlls to target multiple
versions?

3. What is most common, VSTO or using the IDTExtensibility2 interface?

Once again, any help is greatly appreciated.
Ads
  #2  
Old August 13th 09, 05:15 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Interop or VSTO or ?

You can't just install a PIA, the last one installed wins. If you want to
develop for Outlook 2003 you need that installed.

A VSTO addin for 2003 will run in 2007 but won't handle the ribbon, custom
task panes, etc. A VSTO addin for Outlook 2007 won't run at all on 2003.

When I need to target multiple versions of Outlook I compile on the oldest
one and use a shared addin rather than a VSTO addin. To shim it so it has
its own AppDomain I use the COM Shim Wizard which comes with VS2008. That
way I can fork my code based on version and handle CommandBars for UI for
2003 and the ribbon for UI in 2007 for Inspectors. For Explorers both
versions use CommandBars, but be aware that in Outlook 2010 Explorers also
use the ribbon and the old CommandBars interface pushes your UI into the
hard to discover Add-Ins tab.

I have test addins now that are running on Outlook 2003, 2007 and 2010 that
correctly handle the relevant UI based on the runtime version of Outlook,
all in one addin DLL.

Shared addins use Extensibility. So do VSTO addins, but VSTO handles those
interface events and just provides you with Startup() and Shutdown()
handlers. VSTO also shims your code for you, something the shim wizard also
does.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Glenn Welker" wrote in message
...
Long time developer of addins but have been out of development for
three years. Last experience was with VB6 and was fairly painless.
Forgive me for asking multiple questions. It seems that they are all
essentially the same topic.

I have no interest in using VB6 at this point but I need advice on how
to move forward into .NET. I am confused as to my options.

Targets currently are Outlook 2003 and 2007. I currently don't need
the new functionality in 2007. This suggests that I can use the VSTO
but.

1. I currently have Office 2007 and VS 2008 installed. I also
installed the 2003PIA but it keeps complaining that it the 2003 pias
aren't installed. Is it possible to develop an addin for 2003 on a
machine with Office 2007 installed?

2. When targeting multiple versions, it seems as though developers are
creating separate dlls. Can these be tied together in a single install
or are other developers creating single dlls to target multiple
versions?

3. What is most common, VSTO or using the IDTExtensibility2 interface?

Once again, any help is greatly appreciated.


  #3  
Old August 14th 09, 11:51 AM posted to microsoft.public.outlook.program_addins
Glenn Welker
external usenet poster
 
Posts: 2
Default Interop or VSTO or ?

On Aug 13, 12:15*pm, "Ken Slovak - [MVP - Outlook]"
wrote:
You can't just install a PIA, the last one installed wins. If you want to
develop for Outlook 2003 you need that installed.

A VSTO addin for 2003 will run in 2007 but won't handle the ribbon, custom
task panes, etc. A VSTO addin for Outlook 2007 won't run at all on 2003.

When I need to target multiple versions of Outlook I compile on the oldest
one and use a shared addin rather than a VSTO addin. To shim it so it has
its own AppDomain I use the COM Shim Wizard which comes with VS2008. That
way I can fork my code based on version and handle CommandBars for UI for
2003 and the ribbon for UI in 2007 for Inspectors. For Explorers both
versions use CommandBars, but be aware that in Outlook 2010 Explorers also
use the ribbon and the old CommandBars interface pushes your UI into the
hard to discover Add-Ins tab.

I have test addins now that are running on Outlook 2003, 2007 and 2010 that
correctly handle the relevant UI based on the runtime version of Outlook,
all in one addin DLL.

Shared addins use Extensibility. So do VSTO addins, but VSTO handles those
interface events and just provides you with Startup() and Shutdown()
handlers. VSTO also shims your code for you, something the shim wizard also
does.

--
Ken Slovak
[MVP - Outlook]http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.http://www.slovaktech.com/products.htm

"Glenn Welker" wrote in message

...

Long time developer of addins but have been out of development for
three years. Last experience was with VB6 and was fairly painless.
Forgive me for asking multiple questions. It seems that they are all
essentially the same topic.


I have no interest in using VB6 at this point but I need advice on how
to move forward into .NET. I am confused as to my options.


Targets currently are Outlook 2003 and 2007. I currently don't need
the new functionality in 2007. This suggests that I can use the VSTO
but.


1. I currently have Office 2007 and VS 2008 installed. I also
installed the 2003PIA but it keeps complaining that it the 2003 pias
aren't installed. Is it possible to develop an addin for 2003 on a
machine with Office 2007 installed?


2. When targeting multiple versions, it seems as though developers are
creating separate dlls. Can these be tied together in a single install
or are other developers creating single dlls to target multiple
versions?


3. What is most common, VSTO or using the IDTExtensibility2 interface?


Once again, any help is greatly appreciated.


As always, thanks for the detailed response. Looks like I have my work
cut out for me. : )
 




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
Exception during Outlook Interop John[_11_] Outlook - General Queries 4 April 26th 08 09:41 AM
Exception during Outlook Interop John[_11_] Outlook and VBA 4 April 26th 08 09:41 AM
Outlook 2003 primary interop advise John Outlook - General Queries 4 February 5th 08 09:18 PM
Interop Assemblies for Outlook 2000 John Outlook - General Queries 1 February 4th 08 07:09 PM
Could not load file or assembly Interop.MAPI Dhananjay Outlook and VBA 6 October 24th 07 09:52 PM


All times are GMT +1. The time now is 11:15 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-2025 Outlook Banter.
The comments are property of their posters.