Group:  Microsoft Outlook ยป microsoft.public.outlook.program_addins
Thread: Question: Using VSTO to package/deploy Outlook Add-Ins?

DotNetBag
.NET Development Newsgroups

HTVi
TV Discussion Newsgroups

Our Hot Pick: Rising Antivirus 2006 - Certified by TUV & Checkmark! Get 10% discount by entering this coupon code: ONDISCOUNT10
Rising Antivirus 2006

Question: Using VSTO to package/deploy Outlook Add-Ins?
"Tadwick" <simon[ at ]schemax.com> 21.07.2006 21:33:20
I posted this to an MSDN forum on VSTO and got no replies yet so hope you
don't mind me trying this forum. I'm new to add-ins and have not used VSTO
before. Can someone pls confirm my understanding of the following with
regard to VSTO and Outlook:

1. You can only deploy to Outlook 2003 (and later).

2. You have to ensure users have a number of prerequisites before they
install your VSTO-developed add-in:
- .NET 2.0
- Outlook 2003 SP 1
- Outlook 2003 Primary Interop Assemblies (redist)
- VSOT run time

3. You have to purchase VSTO ($550 for upgrade).

So, aside from the loss of backward compatibility with pre 2003 versions of
Outlook and the purchase cost (which is very unfortunate given that I've
already paid $550 for VS Pro), are there other cons to using VSTO? I
thought I read that users also have to be running Office _Professional_ to
get VSTO solutions to work - is this true? Does VSTO make it very easy to
transform VBA code to a professional deployable solution that will cause
users/admin minimum fuss to deploy?

Thanks

Tad


Re: Question: Using VSTO to package/deploy Outlook Add-Ins?
"Ken Slovak - [MVP - Outlook]" <kenslovak[ at ]mvps.org> 24.07.2006 13:00:37
Office Professional and you must make sure that your distribution sets the
security for the VSTO addin to trusted on the target machines.

Conversion of code from VBA to VB.NET can be relatively straight-forward
depending on your code, but it also can take a lot of manual conversion that
no VB --> VB.NET converter can handle. Things like the redefinition of Long
to 64 bit and Integer to 32 bit are just the beginning of the
incompatibilities.

See http://www.outlookcode.com/vsto/index.htm for lots of information on
VSTO.

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


"Tadwick" <simon[ at ]schemax.com> wrote in message
news:eD6NQzQrGHA.3908[ at ]TK2MSFTNGP05.phx.gbl...
[Quoted Text]
>I posted this to an MSDN forum on VSTO and got no replies yet so hope you
>don't mind me trying this forum. I'm new to add-ins and have not used VSTO
>before. Can someone pls confirm my understanding of the following with
>regard to VSTO and Outlook:
>
> 1. You can only deploy to Outlook 2003 (and later).
>
> 2. You have to ensure users have a number of prerequisites before they
> install your VSTO-developed add-in:
> - .NET 2.0
> - Outlook 2003 SP 1
> - Outlook 2003 Primary Interop Assemblies (redist)
> - VSOT run time
>
> 3. You have to purchase VSTO ($550 for upgrade).
>
> So, aside from the loss of backward compatibility with pre 2003 versions
> of Outlook and the purchase cost (which is very unfortunate given that
> I've already paid $550 for VS Pro), are there other cons to using VSTO? I
> thought I read that users also have to be running Office _Professional_ to
> get VSTO solutions to work - is this true? Does VSTO make it very easy to
> transform VBA code to a professional deployable solution that will cause
> users/admin minimum fuss to deploy?
>
> Thanks
>
> Tad
>

Re: Question: Using VSTO to package/deploy Outlook Add-Ins?
"Sue Mosher [MVP-Outlook]" <suemvp[ at ]outlookcode.com> 25.07.2006 01:08:35
Saw some interesting test results yesterday from someone who got his VSTO add-in to install on Outlook from Office Basic, on Outlook standalone, and on Outlook from Office Pro.

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

"Ken Slovak - [MVP - Outlook]" <kenslovak[ at ]mvps.org> wrote in message news:OzgP5EyrGHA.2464[ at ]TK2MSFTNGP03.phx.gbl...
[Quoted Text]
> Office Professional and you must make sure that your distribution sets the
> security for the VSTO addin to trusted on the target machines.
>
> Conversion of code from VBA to VB.NET can be relatively straight-forward
> depending on your code, but it also can take a lot of manual conversion that
> no VB --> VB.NET converter can handle. Things like the redefinition of Long
> to 64 bit and Integer to 32 bit are just the beginning of the
> incompatibilities.
>
> See http://www.outlookcode.com/vsto/index.htm for lots of information on
> VSTO.
>
> --
> 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
>
>
> "Tadwick" <simon[ at ]schemax.com> wrote in message
> news:eD6NQzQrGHA.3908[ at ]TK2MSFTNGP05.phx.gbl...
>>I posted this to an MSDN forum on VSTO and got no replies yet so hope you
>>don't mind me trying this forum. I'm new to add-ins and have not used VSTO
>>before. Can someone pls confirm my understanding of the following with
>>regard to VSTO and Outlook:
>>
>> 1. You can only deploy to Outlook 2003 (and later).
>>
>> 2. You have to ensure users have a number of prerequisites before they
>> install your VSTO-developed add-in:
>> - .NET 2.0
>> - Outlook 2003 SP 1
>> - Outlook 2003 Primary Interop Assemblies (redist)
>> - VSOT run time
>>
>> 3. You have to purchase VSTO ($550 for upgrade).
>>
>> So, aside from the loss of backward compatibility with pre 2003 versions
>> of Outlook and the purchase cost (which is very unfortunate given that
>> I've already paid $550 for VS Pro), are there other cons to using VSTO? I
>> thought I read that users also have to be running Office _Professional_ to
>> get VSTO solutions to work - is this true? Does VSTO make it very easy to
>> transform VBA code to a professional deployable solution that will cause
>> users/admin minimum fuss to deploy?
>>
>> Thanks
>>
>> Tad
>>
>
Re: Question: Using VSTO to package/deploy Outlook Add-Ins?
"Ken Slovak - [MVP - Outlook]" <kenslovak[ at ]mvps.org> 25.07.2006 14:02:57
I saw a post about that but I haven't tested it and don't have those
versions installed around here anywhere to play with. It might wok OK but
it's certainly unsupported.

Have you played with it at all?

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


"Sue Mosher [MVP-Outlook]" <suemvp[ at ]outlookcode.com> wrote in message
news:%23andBj4rGHA.1592[ at ]TK2MSFTNGP02.phx.gbl...
Saw some interesting test results yesterday from someone who got his VSTO
add-in to install on Outlook from Office Basic, on Outlook standalone, and
on Outlook from Office Pro.

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


Re: Question: Using VSTO to package/deploy Outlook Add-Ins?
"Tadwick" <simon[ at ]schemax.com> 30.07.2006 02:55:52
Ken and Sue,

Thanks for the replies - can you tell me where this was posted?

Tx


"Ken Slovak - [MVP - Outlook]" <kenslovak[ at ]mvps.org> wrote in message
news:eJQggM$rGHA.1284[ at ]TK2MSFTNGP05.phx.gbl...
[Quoted Text]
>I saw a post about that but I haven't tested it and don't have those
>versions installed around here anywhere to play with. It might wok OK but
>it's certainly unsupported.
>
> Have you played with it at all?
>
> --
> 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
>
>
> "Sue Mosher [MVP-Outlook]" <suemvp[ at ]outlookcode.com> wrote in message
> news:%23andBj4rGHA.1592[ at ]TK2MSFTNGP02.phx.gbl...
> Saw some interesting test results yesterday from someone who got his VSTO
> add-in to install on Outlook from Office Basic, on Outlook standalone, and
> on Outlook from Office Pro.
>
> --
> 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
>
>


Re: Question: Using VSTO to package/deploy Outlook Add-Ins?
"Ken Slovak - [MVP - Outlook]" <kenslovak[ at ]mvps.org> 31.07.2006 13:13:11
It was posted in microsoft.public.developer.outlook.addins. The thread was
"Outlook 2003 add-in".

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


"Tadwick" <simon[ at ]schemax.com> wrote in message
news:%23F2zyM4sGHA.1192[ at ]TK2MSFTNGP04.phx.gbl...
[Quoted Text]
> Ken and Sue,
>
> Thanks for the replies - can you tell me where this was posted?
>
> Tx

Re: Question: Using VSTO to package/deploy Outlook Add-Ins?
"Tadwick" <simon[ at ]schemax.com> 31.07.2006 21:58:01
Thanks, Ken and for pointing me to yet another forum for add-ins !


"Ken Slovak - [MVP - Outlook]" <kenslovak[ at ]mvps.org> wrote in message
news:uDRwpNKtGHA.4444[ at ]TK2MSFTNGP06.phx.gbl...
[Quoted Text]
> It was posted in microsoft.public.developer.outlook.addins. The thread was
> "Outlook 2003 add-in".
>
> --
> 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
>
>
> "Tadwick" <simon[ at ]schemax.com> wrote in message
> news:%23F2zyM4sGHA.1192[ at ]TK2MSFTNGP04.phx.gbl...
>> Ken and Sue,
>>
>> Thanks for the replies - can you tell me where this was posted?
>>
>> Tx
>


Home | Search | Terms | Imprint | Contact
Newsgroups Reader - provided by WiredBox.Net