<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx</link><description>Perusing the forums over the last few months, it’s clear that there’s some confusion about the various VSTO loader and runtime components. At the time of writing, there are 4 versions of VSTO in existence, including 4 sets of design-time tooling and 3.5</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8376241</link><pubDate>Thu, 10 Apr 2008 23:00:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8376241</guid><dc:creator>Jaimie Birk</dc:creator><description>&lt;p&gt;I am getting bogged down in version confusion.&lt;/p&gt;
&lt;p&gt;I have a document level customization created in VSTO SE. &amp;nbsp;It opens and runs ok in both Excel 2003 and Excel 2007. &amp;nbsp;Once someone saves it as an Excel 2007 document (xlsm), I can't figure out how to use the ServerDocument on it. &lt;/p&gt;
&lt;p&gt;If I use the SE ServerDocument (in VS.Tools.Applications.Runtime), it tells me &amp;quot;Could not create a persistence object for the specified file&amp;quot;. &amp;nbsp;If I try to use the VSTO3 ServerDocument (int VS.Tools.Applications.ServerDocument.v9.0) it tells me &amp;quot;The document was customized using an earlier version of Visual Studio Tools for Office.&amp;quot;&lt;/p&gt;
&lt;p&gt;So, how do I open an Excel 2007 document customized with VSTO SE?&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8382302</link><pubDate>Sat, 12 Apr 2008 00:45:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8382302</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;Hi Jaimie&lt;/p&gt;
&lt;p&gt;Unfortunately, that is a difficult situation. The VSTO v2 (2005/2005SE) runtime connects a document with its associated customization via a hidden ActiveX control. On the other hand, the VSTO v3 (2008) and later runtimes do not use an ActiveX control - instead, the customization metadata is stored in a custom XML part. Switching the file format is not enough to switch the VSTO v2 runtime that will work with the file.&lt;/p&gt;
&lt;p&gt;If you have a VSTO v2 (2005/2005SE) doc-level solution, then it targets Office 2003 and it uses the Office 97-2003 binary file format. If the user saves this document into the Office 2007 OOXML file format (as an xlsx/xlsm), we'll persist the VSTO customization information in a separate ActiveX control stream associated with a custom XML part. &lt;/p&gt;
&lt;p&gt;Unfortunately, ServerDocument is version-specific: that is, the ServerDocument v2 only understands how to work with v2 customizations in the original file format. The ServerDocument v3 only understands how to work with v3 customizations. So, when you change the file format from 97-2003 to OOXML, this prevents the ServerDocument v2 from working with it; and the ServerDocument v3 cannot work with a v2 customization (even if it is using the OOXML file format) because the manifest metadata is different and the storage mechanism for the manifest is different.&lt;/p&gt;
&lt;p&gt;The good news is that if the user opens the xlsx file, the customization should still work (still using the VSTO v2 runtime). If the user then re-saves this xlsx back to xls format, again the customization metadata is persisted, so that if they later open the new xls, the customization will still work (v2 runtime). So, a fair amount of roundtripping is supported. Plus, of course, ServerDocument v2 can continue to work with the xls file even after roundtripping. &lt;/p&gt;
&lt;p&gt;If you need to use ServerDocument v2 on a file that has been saved to OOXML, then the simplest thing is to re-save the file back to 97-2003 format first, before attempting to process it.&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8386369</link><pubDate>Sun, 13 Apr 2008 10:45:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8386369</guid><dc:creator>Jacob Thomas</dc:creator><description>&lt;p&gt;I have an Excel2003 Addin developed in VS2008. In my development pc i have Excel2007. I works fine in the development PC(even though I don’t have 2003), but in deployment PC it doesn’t. My Addin is suppose to create a menu next to data menu, it’s not happening.&lt;/p&gt;
&lt;p&gt;Any Suggestions&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8386376</link><pubDate>Sun, 13 Apr 2008 11:04:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8386376</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;Jacob - your setup is not a supported configuration. If you want to develop add-ins for Excel 2003, then you need to have Excel 2003 on your machine and not Excel 2007. See here for more details: &lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/andreww/archive/2007/06/08/why-is-vs-development-not-supported-with-multiple-versions-of-office.aspx"&gt;http://blogs.msdn.com/andreww/archive/2007/06/08/why-is-vs-development-not-supported-with-multiple-versions-of-office.aspx&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I expect what's happening is that your project is referencing the Excel 2007 PIAs which of course are not available on the deployment PC.&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8397937</link><pubDate>Tue, 15 Apr 2008 20:09:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8397937</guid><dc:creator>AUSTISM</dc:creator><description>&lt;p&gt;I am dizzy.... &lt;/p&gt;
&lt;p&gt;This is my situation that I can't seem to figure out yet. I have both VS2005 &amp;amp; VS2008 on my local PC, and &lt;/p&gt;
&lt;p&gt;have VS2008 on my virtual server that has Office 2007 software and Moss 2007 running. &lt;/p&gt;
&lt;p&gt;so when I try to install VSTO for 2005 on my local PC, it says it can't do it because I don't have any SharePoint installed. So which version of VSTO do I try to install on my virtual server that is running VS2008 and MOSS 2007??? &lt;/p&gt;
&lt;p&gt;SMA&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8397958</link><pubDate>Tue, 15 Apr 2008 20:29:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8397958</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;Austism - I'm not completely sure what you're trying to do. VS2008 includes VSTO 2008. Only some versions of VS2005 include VSTO: specifically, the VS/VSTO 2005 SKU, and all the VS Team System SKUs.&lt;/p&gt;
&lt;p&gt;So, you already have VSTO 2008 on your virtual server and on your local PC.&lt;/p&gt;
&lt;p&gt;Also, installing VSTO 2005 should not complain about SharePoint because SharePoint is not a pre-requisite for VSTO. Are you trying to install the VS Extensions for SharePoint (VSEWSS)?&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8397993</link><pubDate>Tue, 15 Apr 2008 20:53:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8397993</guid><dc:creator>SMA</dc:creator><description>&lt;p&gt;Oh your correct. I just wanted the templates that show up in VS 2005 for SharePoint to show up in VS 2008. How do I get the Web Part, List Definition, Team Site Definition templates to show up under project types for new project in VS 2008. If it isn't with VSTO then what? &lt;/p&gt;
&lt;p&gt;SMA&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8398001</link><pubDate>Tue, 15 Apr 2008 21:00:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8398001</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;SMA - those are the VSEWSS templates. The current release only works with VS2005, and only on a machine with SharePoint on it. They are unrelated to VSTO.&lt;/p&gt;
&lt;p&gt;The next release of VSEWSS will work with VS 2008, see here for details: &lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/sharepoint/archive/2008/02/11/announcing-the-final-release-of-vsewss-1-1-and-the-upcoming-version-1-2.aspx"&gt;http://blogs.msdn.com/sharepoint/archive/2008/02/11/announcing-the-final-release-of-vsewss-1-1-and-the-upcoming-version-1-2.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Multiple Office versions...</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8408759</link><pubDate>Fri, 18 Apr 2008 21:55:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8408759</guid><dc:creator>Austin</dc:creator><description>&lt;p&gt;The problem I am having is that with Office 07 we built our adding to make extensive use of the Ribbon and task panes. &amp;nbsp;As compared to Command Bars and forms we used in earlier versions of Office.&lt;/p&gt;
&lt;p&gt;Our snag is that many of our users have more than one version of Office installed for compatibility and testing issues.&lt;/p&gt;
&lt;p&gt;Is there some simple way to determine which version the user is starting and then load the version specific add-in for it?&lt;/p&gt;
&lt;p&gt;(Note, our add-ins are for PowerPoint.)&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8408811</link><pubDate>Fri, 18 Apr 2008 22:13:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8408811</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;Austin - the simplest way to detect (a) if a particular application is actually running, and (b) which version, is to use Marshal.GetActiveObject, cast the return to the type of application you expect and then access that object's Version property.&lt;/p&gt;
&lt;p&gt;For example:&lt;/p&gt;
&lt;p&gt;try&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;PowerPoint.Application ppt = (PowerPoint.Application)Marshal.GetActiveObject(&amp;quot;PowerPoint.Application&amp;quot;);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;MessageBox.Show(ppt.Version);&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;catch (Exception ex)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;MessageBox.Show(ex.ToString());&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;If the app is not running, GetActiveObject will throw an exception. The Version property is obviously common to multiple versions of PowerPoint.Application.&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8408944</link><pubDate>Fri, 18 Apr 2008 23:05:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8408944</guid><dc:creator>Austin</dc:creator><description>&lt;p&gt;Andrew, I hear what you are saying however the issue is that when I create and pubish the add-in, its installation includes a reg key HKLM\Software\Microsoft\Office\PowerPoint&lt;/p&gt;
&lt;p&gt;This key sets the load behavior for PowerPoint/Com Add-in when PowerPoint starts and this key seems to be generic in that it is present regardles of any other reg keys that are spcific to the version of Office. &amp;nbsp;(There are version specific keys but the load behavior is always directed to this common key.)&lt;/p&gt;
&lt;p&gt;I've hacked around the registry but find no way to get around this problem.&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8409012</link><pubDate>Fri, 18 Apr 2008 23:40:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8409012</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;Austin - sorry, I should have been clearer. You're correct - COM add-ins (including VSTO add-ins) are registered per app, regardless of app version.&lt;/p&gt;
&lt;p&gt;I was suggesting that you detect the version programmatically as your add-in is loaded, and then your add-in code would branch to the version-specific functionality. See here for more details on this approach: &lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/andreww/archive/2007/06/15/can-you-build-one-add-in-for-multiple-versions-of-office.aspx"&gt;http://blogs.msdn.com/andreww/archive/2007/06/15/can-you-build-one-add-in-for-multiple-versions-of-office.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8410406</link><pubDate>Sun, 20 Apr 2008 00:08:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8410406</guid><dc:creator>Austin</dc:creator><description>&lt;p&gt;Andrew, thanks. &amp;nbsp;Read the linked information and will give it some thought on the best way to implement it.&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8410409</link><pubDate>Sun, 20 Apr 2008 00:15:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8410409</guid><dc:creator>Austin</dc:creator><description>&lt;p&gt;I meant to add. &amp;nbsp;You point out that Microsoft has &amp;quot;moved on&amp;quot; and developers should to. &amp;nbsp;Now if I were raking in billions a year and didn't really care about supporting my existing clients like Microsoft I might agree, but I am not making billions and fully 2/3 of my clients are not moving to Office 07. &amp;nbsp;Wish that were not the case, but it is what it is so I am stuck trying to meet real world clients and their needs.&lt;/p&gt;
</description></item><item><title>Direkt aus dem Hexenkessel der Softwareschmiede</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8418673</link><pubDate>Wed, 23 Apr 2008 12:22:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8418673</guid><dc:creator>Open XML, VSTO, Deployment, .NET und anderes</dc:creator><description>&lt;p&gt;Bekanntlich sind Informationen direkt von der Quelle die besten, da nicht misinterpretiert. Andrew Whitechapel&lt;/p&gt;
</description></item><item><title>Deploying your VSTO 2008 Add-In to All Users (Part III)</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8423015</link><pubDate>Fri, 25 Apr 2008 02:17:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8423015</guid><dc:creator>Misha Shneerson</dc:creator><description>&lt;p&gt;This post is both the continuation of part I and part II installments but it also addresses new product&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8444661</link><pubDate>Wed, 30 Apr 2008 22:55:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8444661</guid><dc:creator>Raymond</dc:creator><description>&lt;p&gt;Andrew - Thanks for this article! I could'nt find that matrix on MS sites (I mean on one site ;-))&lt;/p&gt;
&lt;p&gt;And, though I do not have a question which meets the scope of this article, your responsiveness gets your site in my top 10 favs. Great.&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8444919</link><pubDate>Wed, 30 Apr 2008 23:54:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8444919</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;Raymond - thanks for the kind comment - it's nice to know there's folks out there who appreciate the effort. :-)&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8483531</link><pubDate>Sat, 10 May 2008 08:21:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8483531</guid><dc:creator>asurachman</dc:creator><description>&lt;p&gt;dear Andrew.&lt;/p&gt;
&lt;p&gt;I have a client installed the add-ins package distributed to him. &amp;nbsp;No errors at all. &amp;nbsp;All prerequisites were installed. &amp;nbsp;But Word ribbon didn't come up. &amp;nbsp;No errors message though the option already ticked. &amp;nbsp;In word add-ins option, the package should be loaded and the options also ticked. &amp;nbsp;It was under Active Add-ins.&lt;/p&gt;
&lt;p&gt;But the ribbon didn't come up.&lt;/p&gt;
&lt;p&gt;The same installer already test to other computers, and it worked fine.&lt;/p&gt;
&lt;p&gt;It confused me.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;-Aguss&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8483597</link><pubDate>Sat, 10 May 2008 09:15:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8483597</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;Aguss - it's not clear from your description what's going on. I suggest you run the VSTO Troubleshooter on the machine to see if there are any pre-req issues. You can get the Troubleshooter here: &lt;a rel="nofollow" target="_new" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=46B6BF86-E35D-4870-B214-4D7B72B02BF9&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=46B6BF86-E35D-4870-B214-4D7B72B02BF9&amp;amp;displaylang=en&lt;/a&gt;. Also, in Word, you should turn on the ribbon error reporting: Word Options | Advanced | General | Show add-in user interface errors.&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8491045</link><pubDate>Mon, 12 May 2008 05:35:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8491045</guid><dc:creator>asurachman</dc:creator><description>&lt;p&gt;The problem is dealt with HP Tablet with Vista.&lt;/p&gt;
&lt;p&gt;The error came up: Install UtilLib.dll:Unkown error.&lt;/p&gt;
&lt;p&gt;I distributed VSTO developed using VS 2005 with VSTO SE.&lt;/p&gt;
&lt;p&gt;With machine which has already has 3.0 and 3.5, what should I do? Will it work?&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8492207</link><pubDate>Mon, 12 May 2008 09:57:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8492207</guid><dc:creator>asurachman</dc:creator><description>&lt;p&gt;Just got information that the OS is Vista.&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8496142</link><pubDate>Mon, 12 May 2008 22:05:53 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8496142</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;Asurachman - it still not at all clear what you're doing. What is UtilLib.dll? Is this your DLL or a DLL that you're referencing? Did you install this will your add-in?&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8530660</link><pubDate>Thu, 22 May 2008 03:15:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8530660</guid><dc:creator>asurachman</dc:creator><description>&lt;p&gt;Thank you for information about loading sequence. &amp;nbsp;It helps for troubleshooting.&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8865100</link><pubDate>Thu, 14 Aug 2008 09:44:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8865100</guid><dc:creator>Abhinav</dc:creator><description>&lt;p&gt;I created a ribbon in Excel using VSTO 2008. My ribbon contains a button, on which I have provided screen tip &amp;amp; super tip as well as keyboard shortcut, after deploying it to excel; I am getting an extra tag in screen tip pop-up asking user to “Press F1 for more help”. While pressing F1 key it is opening MS online help; is it possible to customize this shortcut, I want a *.chm file to be opened which provide context help with perspective of my project.&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8868478</link><pubDate>Fri, 15 Aug 2008 04:57:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8868478</guid><dc:creator>efaller</dc:creator><description>&lt;p&gt;Hi Abhinav,&lt;/p&gt;
&lt;p&gt;Unfortunately, no it is not possible to use a custom CHM help file or hide the &amp;quot;Press F1 for more help&amp;quot; text in Office 2007. :(&lt;/p&gt;
</description></item><item><title>VSTO 3.0 and Visio Essentials</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8905705</link><pubDate>Fri, 29 Aug 2008 19:35:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8905705</guid><dc:creator>Chris Hopkins' Visilog</dc:creator><description>&lt;p&gt;Visual Studio Tools for Office 3.0 (VSTO) is the latest release of VSTO since the 2005 SE release. If&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8933851</link><pubDate>Mon, 08 Sep 2008 19:03:52 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8933851</guid><dc:creator>alan glover</dc:creator><description>&lt;p&gt;Andrew,&lt;/p&gt;
&lt;p&gt;This is a bit off topic, I hope you don't mind, I'm desperate for information.&lt;/p&gt;
&lt;p&gt;I've developed an Outlook Add-in for OL2003 using VSTO 2005SE - so its a managed-code add-in. I want to deploy it for &amp;quot;All-Users&amp;quot;. &amp;nbsp;I tried modifying the set-up project to move the addin Key from HKCU to HKLM but this has not worked - Outlook does not display the add-in in its COM Add-ins list.&lt;/p&gt;
&lt;p&gt;I've seen lots of stuff about how to do this for OL2007 but I think it relies on something in Office 2007 and its a lot of work to embark on if its not going to work.&lt;/p&gt;
&lt;p&gt;Can you point me in the right direction?&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;
&lt;p&gt;Alan&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8935467</link><pubDate>Tue, 09 Sep 2008 04:03:43 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8935467</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;Alan - first, prior to Office 2007, add-ins registered to HKLM are not displayed in the COM add-ins dialog. This doesn't mean they're not loaded, simply that they're not reported in this dialog.&lt;/p&gt;
&lt;p&gt;Second, note that VSTO 2005SE uses persisted CAS policy for its security checks. So, if you want to deploy an add-in for all users, you must modify the caspol security policy that you're deploying so that it affects all users - the simplest way to do this is to set it at machine level instead of at user level.&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8953612</link><pubDate>Tue, 16 Sep 2008 10:44:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8953612</guid><dc:creator>petertuffin</dc:creator><description>&lt;p&gt;There's a quite straight forward reason for needing to develop on the two platforms: the Ribbon. &amp;nbsp;It is nice to be able to program around the Ribbon in Office 2007; &amp;nbsp;but when some of your potential users are still on Office 2003, then you have to program for them too, and use the Toolbar model.&lt;/p&gt;
&lt;p&gt;I see that I'm going to need two PCs, unshared code, etc., to do that.&lt;/p&gt;
&lt;p&gt;Now, I know that nothing's impossible with computers, so there's a challenge for Visual Studio Service Pack 2!! &amp;nbsp;:)&lt;/p&gt;
</description></item><item><title>VSTO学习资料: VSTO Loader and Runtime Components </title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8966226</link><pubDate>Fri, 26 Sep 2008 12:51:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8966226</guid><dc:creator>hit41</dc:creator><description>&lt;p&gt;BelowmateriaisfromAndrewWhitechapel'sblog,whichisforVisualStudio,OfficeandotherNonsen...&lt;/p&gt;
</description></item><item><title>VSTO学习资料: VSTO Loader and Runtime Components </title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8966231</link><pubDate>Fri, 26 Sep 2008 12:53:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8966231</guid><dc:creator>hit41</dc:creator><description>&lt;p&gt;At the time of writing, there are 4 versions of VSTO in existence, including 4 sets of design-time tooling and 3.5 versions of the VSTO runtime. I say 3.5 versions, because the VSTO 2005 SE runtime was an in-situ replacement for the VSTO 2005 runtime,&lt;/p&gt;
</description></item><item><title>VSTO学习资料：CLARITY: Visual Studio Tools for Office (VSTO)</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#8966240</link><pubDate>Fri, 26 Sep 2008 13:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8966240</guid><dc:creator>hit41</dc:creator><description>&lt;p&gt;After chatting with a few people about Visual Studio Tools for Office (VSTO) recently, it’s clear that the technology is not that well understood (even though, in my opinion, Microsoft have done a pretty good job of articulating it – much better than&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#9426779</link><pubDate>Tue, 17 Feb 2009 03:47:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9426779</guid><dc:creator>Diana Morabito</dc:creator><description>&lt;p&gt;My application uses ServerDocument to add customization to user files before opening them. &amp;nbsp;If I convert to a VSTO 2008 doc-level solution, can I use the same ServerDocument version to add customization to both 2003 and 2007 documents?&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#9426800</link><pubDate>Tue, 17 Feb 2009 04:04:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9426800</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;Diana - there are different versions of the ServerDocument class. See the documentation on MSDN for details of how to write code that uses both versions to work with Office 2003 and 2007 documents: &lt;a rel="nofollow" target="_new" href="http://msdn.microsoft.com/en-us/library/bb772081.aspx"&gt;http://msdn.microsoft.com/en-us/library/bb772081.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#9428110</link><pubDate>Tue, 17 Feb 2009 21:14:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9428110</guid><dc:creator>Diana Morabito</dc:creator><description>&lt;p&gt;Does this mean that our developers need both Office 2007 AND Office 2003 installed on their systems?&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#9428128</link><pubDate>Tue, 17 Feb 2009 21:20:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9428128</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;Diana - each version of the VSTO runtime (including ServerDocument) is specific to a corresponding version of Office. This means that on a dev machine, you need to have at the least the version of the Office PIAs that correspond to the version of the VSTO runtime. This is enough for a solution to build.&lt;/p&gt;
&lt;p&gt;If you also want to run the solution on that machine, then you will need both versions of Office also.&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#9549313</link><pubDate>Wed, 15 Apr 2009 00:48:56 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9549313</guid><dc:creator>mlstanley</dc:creator><description>&lt;p&gt;Andrew,&lt;/p&gt;
&lt;p&gt; I built a Excel 2003 application Addin with VSTO SE v2 using VS 2005. I upgraded my IDE to VS 2008 and our compnay upgraded our Office to 2007. I imported my xls 03 addin project to VS 2008 but I can't seem to get to compile.&lt;/p&gt;
&lt;p&gt;The addin seems to run just fine in xls 2008 from VS 2005.&lt;/p&gt;
&lt;p&gt;I don't care about backwards complatblity to 03. but I would like to be able to dev and deploy with MSI installer on xls 07&lt;/p&gt;
&lt;p&gt;any insight would be great. &amp;nbsp; &lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#9549508</link><pubDate>Wed, 15 Apr 2009 00:59:24 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9549508</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;mlstanley - First, you don't need to recompile, as your add-in should just continue to work in Excel 2007. That said, if you want to continue developing, the import wizard that migrates your VS2005 project to VS2008 should have just worked - it would have given you an error report if it found any problems.&lt;/p&gt;
&lt;p&gt;If the migrated project doesn't compile, why not? That is, what are the compiler error messages?&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#9551114</link><pubDate>Wed, 15 Apr 2009 20:01:49 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9551114</guid><dc:creator>mlstanley</dc:creator><description>&lt;p&gt;Thanks for the quick reply,&lt;/p&gt;
&lt;p&gt;I am getting &amp;nbsp;this error that starts the chain of what seem to be related errors.&lt;/p&gt;
&lt;p&gt;Error	1	Type 'Microsoft.VisualStudio.Tools.Applications.Runtime.IStartup' is not defined.	&amp;quot;pathinfo&amp;quot;Addin.Designer.vb	22	16	&amp;quot;myprojextname&amp;quot;&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#9551158</link><pubDate>Wed, 15 Apr 2009 21:42:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9551158</guid><dc:creator>andreww</dc:creator><description>&lt;p&gt;mlstanley - looks like you're missing some critical VSTO assemblies. IStartup is part of the VSTO 2005/SE runtime - so if the compiler can't find it, you probably don't have the VSTO 2005/SE runtime installed - or the installation is corrupt in some way. You can get the runtime here: &lt;a rel="nofollow" target="_new" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=8315654b-a5ae-4108-b7fc-186402563f2b"&gt;http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;amp;FamilyID=8315654b-a5ae-4108-b7fc-186402563f2b&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: VSTO Loader and Runtime Components</title><link>http://blogs.msdn.com/andreww/archive/2008/04/02/vsto-loader-and-runtime-components.aspx#9554442</link><pubDate>Fri, 17 Apr 2009 20:26:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9554442</guid><dc:creator>mlstanley</dc:creator><description>&lt;p&gt;Hmm, well I re-installed then said repair. I am still getting the error. I am applying the VS 2008 sp1 now lets see if that helps.&lt;/p&gt;
</description></item></channel></rss>