WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

add-ins for multiple Outlook versions

 
   Home -> Office -> Program Add-Ins RSS
Next:  pulling mail from folders other than inbox  
Author Message
Andrey Nikulin

External


Since: Aug 07, 2008
Posts: 1



(Msg. 1) Posted: Thu Aug 07, 2008 7:44 am
Post subject: add-ins for multiple Outlook versions
Archived from groups: microsoft>public>outlook>program_addins (more info?)

Hi all,

I suspect this question is FAQ here. Can somebody point me to the good
description how I can buid up an addin targeted to multiple outlook versions.
Most of all I am interested in 2003/2007 versions.

Thanks.
Back to top
Login to vote
Dmitry Streblechenko

External


Since: Nov 23, 2003
Posts: 1122



(Msg. 2) Posted: Thu Aug 07, 2008 2:43 pm
Post subject: Re: add-ins for multiple Outlook versions [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

There is not much to it: target the lowest supported version of Outlook.
I.e. an add-in develped under Outlook 2003 will work under 2007.
The devil is in the details of course, and it all depends on the programming
language that you are using.

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Andrey Nikulin" <Andrey Nikulin DeleteThis @discussions.microsoft.com> wrote in message
news:C2437DAD-60A4-42AA-9E58-314473330DEE@microsoft.com...
> Hi all,
>
> I suspect this question is FAQ here. Can somebody point me to the good
> description how I can buid up an addin targeted to multiple outlook
> versions.
> Most of all I am interested in 2003/2007 versions.
>
> Thanks.
Back to top
Login to vote
Andrey Nikulin

External


Since: Aug 07, 2008
Posts: 2



(Msg. 3) Posted: Thu Aug 07, 2008 3:10 pm
Post subject: Re: add-ins for multiple Outlook versions [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I am using C# to implement IDTExtensibility2 interface.
And what exactly and how I should reference?

Right now I have references to next libraries:
1. Microsoft Office 12.0 Object Library - Office.dll from GAC
2. Microsoft.Office.Interop.Outlook 11.0.0.0

What libraries do I need reference to target addin to Office 2003? The same
libraries but from Office version 2003?

Should I distribute those libraries together with AddIn in case if client
has Office 2007 installed?




"Dmitry Streblechenko" wrote:

> There is not much to it: target the lowest supported version of Outlook.
> I.e. an add-in develped under Outlook 2003 will work under 2007.
> The devil is in the details of course, and it all depends on the programming
> language that you are using.
>
> --
> Dmitry Streblechenko (MVP)
> http://www.dimastr.com/
> OutlookSpy - Outlook, CDO
> and MAPI Developer Tool
> -
> "Andrey Nikulin" <Andrey Nikulin.RemoveThis@discussions.microsoft.com> wrote in message
> news:C2437DAD-60A4-42AA-9E58-314473330DEE@microsoft.com...
> > Hi all,
> >
> > I suspect this question is FAQ here. Can somebody point me to the good
> > description how I can buid up an addin targeted to multiple outlook
> > versions.
> > Most of all I am interested in 2003/2007 versions.
> >
> > Thanks.
>
>
>
Back to top
Login to vote
Dmitry Streblechenko

External


Since: Nov 23, 2003
Posts: 1122



(Msg. 4) Posted: Thu Aug 07, 2008 10:18 pm
Post subject: Re: add-ins for multiple Outlook versions [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Make sure you have Outlok 2003, not 2007.
I do not wwrite addins in C#, but you might want to start at
http://www.outlookcode.com/article.aspx?ID=36

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Andrey Nikulin" <AndreyNikulin.DeleteThis@discussions.microsoft.com> wrote in message
news:3719373F-CF39-4BA4-A549-FC30083B4ABB@microsoft.com...
>I am using C# to implement IDTExtensibility2 interface.
> And what exactly and how I should reference?
>
> Right now I have references to next libraries:
> 1. Microsoft Office 12.0 Object Library - Office.dll from GAC
> 2. Microsoft.Office.Interop.Outlook 11.0.0.0
>
> What libraries do I need reference to target addin to Office 2003? The
> same
> libraries but from Office version 2003?
>
> Should I distribute those libraries together with AddIn in case if client
> has Office 2007 installed?
>
>
>
>
> "Dmitry Streblechenko" wrote:
>
>> There is not much to it: target the lowest supported version of Outlook.
>> I.e. an add-in develped under Outlook 2003 will work under 2007.
>> The devil is in the details of course, and it all depends on the
>> programming
>> language that you are using.
>>
>> --
>> Dmitry Streblechenko (MVP)
>> http://www.dimastr.com/
>> OutlookSpy - Outlook, CDO
>> and MAPI Developer Tool
>> -
>> "Andrey Nikulin" <Andrey Nikulin.DeleteThis@discussions.microsoft.com> wrote in
>> message
>> news:C2437DAD-60A4-42AA-9E58-314473330DEE@microsoft.com...
>> > Hi all,
>> >
>> > I suspect this question is FAQ here. Can somebody point me to the good
>> > description how I can buid up an addin targeted to multiple outlook
>> > versions.
>> > Most of all I am interested in 2003/2007 versions.
>> >
>> > Thanks.
>>
>>
>>
Back to top
Login to vote
Andrey Nikulin

External


Since: Aug 07, 2008
Posts: 2



(Msg. 5) Posted: Fri Aug 08, 2008 12:07 am
Post subject: Re: add-ins for multiple Outlook versions [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi Dmirty,

Thanks. I have alredy seen that page. It helps a lot.

What do you mean by saying "Make sure you have Outlok 2003".

Should I include libraries from Outlook 2003 into installation project and
reference them or what?

"Dmitry Streblechenko" wrote:

> Make sure you have Outlok 2003, not 2007.
> I do not wwrite addins in C#, but you might want to start at
> http://www.outlookcode.com/article.aspx?ID=36
>
> --
> Dmitry Streblechenko (MVP)
> http://www.dimastr.com/
> OutlookSpy - Outlook, CDO
> and MAPI Developer Tool
> -
> "Andrey Nikulin" <AndreyNikulin.TakeThisOut@discussions.microsoft.com> wrote in message
> news:3719373F-CF39-4BA4-A549-FC30083B4ABB@microsoft.com...
> >I am using C# to implement IDTExtensibility2 interface.
> > And what exactly and how I should reference?
> >
> > Right now I have references to next libraries:
> > 1. Microsoft Office 12.0 Object Library - Office.dll from GAC
> > 2. Microsoft.Office.Interop.Outlook 11.0.0.0
> >
> > What libraries do I need reference to target addin to Office 2003? The
> > same
> > libraries but from Office version 2003?
> >
> > Should I distribute those libraries together with AddIn in case if client
> > has Office 2007 installed?
> >
> >
> >
> >
> > "Dmitry Streblechenko" wrote:
> >
> >> There is not much to it: target the lowest supported version of Outlook.
> >> I.e. an add-in develped under Outlook 2003 will work under 2007.
> >> The devil is in the details of course, and it all depends on the
> >> programming
> >> language that you are using.
> >>
> >> --
> >> Dmitry Streblechenko (MVP)
> >> http://www.dimastr.com/
> >> OutlookSpy - Outlook, CDO
> >> and MAPI Developer Tool
> >> -
> >> "Andrey Nikulin" <Andrey Nikulin.TakeThisOut@discussions.microsoft.com> wrote in
> >> message
> >> news:C2437DAD-60A4-42AA-9E58-314473330DEE@microsoft.com...
> >> > Hi all,
> >> >
> >> > I suspect this question is FAQ here. Can somebody point me to the good
> >> > description how I can buid up an addin targeted to multiple outlook
> >> > versions.
> >> > Most of all I am interested in 2003/2007 versions.
> >> >
> >> > Thanks.
> >>
> >>
> >>
>
>
>
Back to top
Login to vote
Dmitry Streblechenko

External


Since: Nov 23, 2003
Posts: 1122



(Msg. 6) Posted: Fri Aug 08, 2008 10:18 am
Post subject: Re: add-ins for multiple Outlook versions [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

You need to do thee developmeent on a machine thaat has Outlook 2003, not
2007.
You should not distribute any files installed by Outlook, only files created
by you - add-in dll and possibly the interop dll created when you add
Outlook 2003 to your project references.

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Andrey Nikulin" <AndreyNikulin.TakeThisOut@discussions.microsoft.com> wrote in message
news:289622BF-444D-4FCF-B4A1-21032DF5D1DA@microsoft.com...
> Hi Dmirty,
>
> Thanks. I have alredy seen that page. It helps a lot.
>
> What do you mean by saying "Make sure you have Outlok 2003".
>
> Should I include libraries from Outlook 2003 into installation project and
> reference them or what?
>
> "Dmitry Streblechenko" wrote:
>
>> Make sure you have Outlok 2003, not 2007.
>> I do not wwrite addins in C#, but you might want to start at
>> http://www.outlookcode.com/article.aspx?ID=36
>>
>> --
>> Dmitry Streblechenko (MVP)
>> http://www.dimastr.com/
>> OutlookSpy - Outlook, CDO
>> and MAPI Developer Tool
>> -
>> "Andrey Nikulin" <AndreyNikulin.TakeThisOut@discussions.microsoft.com> wrote in
>> message
>> news:3719373F-CF39-4BA4-A549-FC30083B4ABB@microsoft.com...
>> >I am using C# to implement IDTExtensibility2 interface.
>> > And what exactly and how I should reference?
>> >
>> > Right now I have references to next libraries:
>> > 1. Microsoft Office 12.0 Object Library - Office.dll from GAC
>> > 2. Microsoft.Office.Interop.Outlook 11.0.0.0
>> >
>> > What libraries do I need reference to target addin to Office 2003? The
>> > same
>> > libraries but from Office version 2003?
>> >
>> > Should I distribute those libraries together with AddIn in case if
>> > client
>> > has Office 2007 installed?
>> >
>> >
>> >
>> >
>> > "Dmitry Streblechenko" wrote:
>> >
>> >> There is not much to it: target the lowest supported version of
>> >> Outlook.
>> >> I.e. an add-in develped under Outlook 2003 will work under 2007.
>> >> The devil is in the details of course, and it all depends on the
>> >> programming
>> >> language that you are using.
>> >>
>> >> --
>> >> Dmitry Streblechenko (MVP)
>> >> http://www.dimastr.com/
>> >> OutlookSpy - Outlook, CDO
>> >> and MAPI Developer Tool
>> >> -
>> >> "Andrey Nikulin" <Andrey Nikulin.TakeThisOut@discussions.microsoft.com> wrote in
>> >> message
>> >> news:C2437DAD-60A4-42AA-9E58-314473330DEE@microsoft.com...
>> >> > Hi all,
>> >> >
>> >> > I suspect this question is FAQ here. Can somebody point me to the
>> >> > good
>> >> > description how I can buid up an addin targeted to multiple outlook
>> >> > versions.
>> >> > Most of all I am interested in 2003/2007 versions.
>> >> >
>> >> > Thanks.
>> >>
>> >>
>> >>
>>
>>
>>
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> Program Add-Ins All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
  Office
 Office Other
 Security
 WinRAR
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET