Connect with me
Search
Twitter Feed
Navigation

Entries in VSTO (6)

Monday
Apr112011

VSTO Addins break after Visual Studio 2010 SP1 install, can't find config file

I ran into a breaking change with Visual Studio 2010 SP1 and VSTO at a client today. It seems there was a change that caused Office addins to look for their config files in the application’s folder instead of from the addin’s folder (e.g. Word.exe.config or Excel.exe.config). The result is all sorts of chaos with AppSettings, WCF service bindings and anything else that needs to be read from the app.config

The details are posted here on connect - Visual Studio SP1 (or specifically VSTO sp1) Issue with config file location

The bug was caused by a change in the way VSTO 4.0 SP1 reads the Manifest value in the Windows Registry. Previously “[TARGETDIR]MyWordAddIn.vsto|vstolocal“ was valid but the URI has changed in SP1

Registrykeys

Click to read more ...

Monday
Nov222010

VSTO Tip - Show Errors from your Add-In

By default, Microsoft have chosen to hide user interface errors for Office add-ins. That means whenever an unhandled exception occurs, you are none the wiser if you’re not debugging. There are two solutions to this:

  1. Implement an exception handler (like LadyLog)
  2. Show the errors by changing the end user options

Click to read more ...

Monday
Nov222010

VSTO Tip - Stop the built in Ribbon reflection from slowing your add-in's load time

Behind the scenes, when a VSTO addin or customization loads, the runtime uses reflection to search for all Ribbon controls and customizations and automatically adds them to the appropriate extension regions. This process makes it easy for developers as they don’t have to worry about hooking up the Ribbon Tab that they’ve developed to the Ribbon, or add a new menu item to the Office Menu. However, it can make the add-in’s startup time slower if your Office solution has many references and assemblies.

Click to read more ...

Monday
Nov222010

VSTO - Error when adding items to ComboBox

Ran into this issue when designing a Ribbon (Visual Designer) control that contained a ComboBox. After you add items to the ComboBox using the properties window, everything appears fine until you attempt to Save or Build. You will get the following error:

Code generation for property ‘Items’ failed. Error was: ‘Object reference not set to an instance of an object’

Click to read more ...

Friday
Apr092010

Sharing a custom Office Ribbon between different VSTO projects

I have been working on Office Integration over the last few months, and what started off as a Word 2007 add-in has now also expanded to PowerPoint and Excel. I refactored the code and pulled the existing Ribbon into a shared class library for the different VSTO projects to use.

Click to read more ...