Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a VSTO project targeting Excel. I also have a WinForm application written in C#. This is all programmed in C# using .Net Framework 4 and VS 2010.

My problem is that I want to be able to invoke this VSTO application, without first opening Excel. So I will click a button in my WinForm app and it should launch Excel and call the VSTO, which would then read from my database and put some values into the Excel sheet.

Is there an official way of doing this or if not, at least a workaround?

share|improve this question

1 Answer

up vote 1 down vote accepted

That is very easy:

  1. You call Excel using Automation using something like GetObject method here more details. As I remember object name will be Excel.Application. This "GetObject" method will either run new instance of Excel (it could be even invisible) or will return you a reference to existing instance.
  2. Call your add-on either through Application.COMAddIns or using any other method like WCF - choice of the communication technology is up to you.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.