By tag: VSTO
0
kicks
Workaround for removing broken VSTO bookmark object after manual remov
A nice article about removing broken VSTO bookmark objects.
0
kicks
Excel 2007 VSTO add-in tutorial
A step-by-step tutorial on building an Excel 2007 VSTO add-in, using .Net, WPF and MVVM, the Ribbon and Custom Task Pane, to extend Office and create a friendly user interface to identify and highlight differences between two worksheets.
0
kicks
Adding satellite assemblies to your VSTO add-in
How to add custom actions to the deployment project of an Office 2003 VSTO add-in solution, to make sure that if you reference a dll, it gets properly installed and granted security trust.
0
kicks
DebuggerNonUserCode: Suppressing ignorable exceptions in the debugger
Shows how to apply the DebuggerNonUserCode attribute so that the debugger doesn't break in methods that catch and handle exceptions.
0
kicks
(Mis)Using IDisposable: beyond resource clean-up
Anybody who has ever done any work with files, databases and so on, in C#, has had it drummed into them that they must be good citizens and always tidy up after themselves. Usually that means using using. But did you know that the using statement has uses that go far beyond resource cleanup?