Welcome to MSDN Blogs Sign in | Join | Help

Misha Shneerson

VSTO internals and the little things about CLR, COM, Visual Studio and more ...

Browse by Tags

All Tags » VSTO   (RSS)
VSTO 2005 Second Edition - hot off the press
VSTO 2005 Second Edition Beta (aka VSTO2005SE) - this is a new free product that complements VSTO 2005. See this announcement from KD Hallman if you want to know general details about the product and the roadmap. I am here to discuss technical details Read More...
Must read for everyone trying to deploy VSTO solutions
I am breaking the silence to get the word out (to those loyal souls that still aggregate my blog) about 2 articles on VSTO deployment. First article is an in depth overview of VSTO deployment models and proposed solutions. The second one is a complete Read More...
Spaces in SmartTag.Terms collection
When you add non-terms into the SmartTag.Terms collection do you expect those terms to be recognized? If you do this is a false expectation. The simplest code to add a SmartTag to a Word document looks like this: private void ThisDocument_Startup( object Read More...
Getting help on VSTO topics
This post is prompted by a comment left yesterday on my blog. The comment was quite big in size. It went something like this - "my assembly has an ActionsPane and can not be loaded, here is the error message I am getting .... ". This brief introduction Read More...
managed addins support in Office 12
At the PDC we have announced support for managed Add-ins across most Office applications. Superficially it is not real news considering today we already have "Shared add-in" project. This project type is there since Visual Studio .NET and this thing is Read More...
Back from PDC
I am back from PDC and I can finally post to my blog! I was not able to do it from LA because 2 weeks before PDC I accidentally ran over my laptop with my van. No surprises here - the laptop is quite useless now. So in LA I had access to computers only Read More...
VSTO PDC sessions
PDC is just in a week and I will be there. I will present during the preconference with Eric Carter and Andrew Whitechapel . The reason three of us are doing this session is because it is 6 hours long! Since we all work directly on the VSTO code base, Read More...
Getting plain VSTO ActionsPane to work.
Adding programmable task pane aka ActionsPane with VSTO is a piece of cake. All you really need to do is just add controls to the ActionsPane object using the familiar WinForms paradigm. Here is how you would show a button on the task pane in Word. Globals.ThisDocument.Controls.Add(new Read More...
Back from vacation. ActionsPane, Part 0.
I took some time off from work for a family vacation. We spent our relaxation week on Vancouver Island in Canada. Here is more info since already couple of people have asked. The place we stayed at is called Beach Acres in Parksville, BC. We rented an Read More...
NewsGator and VSTO Outlook support
Until recently people had "tough" choice to make - in your Outlook either run NewsGator or Outlook COM Add-ins with VSTO support. Both of these did not work together. This is because NewsGator did not support .NET Fx 2.0 which is required by VSTO. Now Read More...
Closing Documents Programmatically is not simple
Both Word and Excel OMs have APIs that allow closing documents programmatically. I suppose there are some scenarios when people would like to call ThisWorkbook.Close() from within their document customizations. This has some interesting effects when such Read More...
Menus for VSTO Smart Tags are dynamic
One quick tip today. Since VSTO Beta2 we have added SmartTags support for document level customizations. How to create those is covered by Paul Stubbs here and in a video tutorial here . However what is not obvious is that one can dynamically change the Read More...
Page view tracker