Visual Studio Tools for Office (VSTO) is a set of development tools that allows the development of Office automation solutions (add-in or document customization), using .NET and the Visual Studio IDE.

learn more… | top users | synonyms

19
votes
4answers
2k views

Beginning VSTO Development

I'm quite confused with what are the necessary tools for VSTO develpment. Specifically I want to manipulate Excel 2003/2007 documents programmatically. I did quite a lot of VBA before, if you want to ...
14
votes
2answers
402 views

How to invoke an action during powerpoint slideshow programmatically?

I am automating a Powerpoint scenario using Coded UI & VSTO. In my powerpoint presentation I have created an 'Action' setting on a shape to launch notepad. During slideshow I need to invoke this ...
10
votes
4answers
991 views

Outlook 2003 Add-in won't load, but is in working order

I have created an Outlook add-in for 2003, 2007 & 2010. The add-in works fine in 2007 and 2010, but is not loading correctly in 2003 on any machines, other than my own dev machine. There are no ...
10
votes
8answers
487 views

What if any links exist to free Excel “helper” class libraries for C#?

I'm looking for any available free Excel "helper" classes that are written for .net (doesn't have to be C#). I'd like to evaluate what others consider to be useful and generic static (and non static) ...
10
votes
2answers
4k views

How do you use WiX to deploy VSTO 3.0 addins?

I want to deploy a VSTO 3 Application Level Word 2007 addin that I've written with Visual Studio 2008. I see that WiX has an extension named WixOfficeExtension that looks like it might have this ...
8
votes
2answers
1k views

How to know if a cell has an error in the formula in C#

In an Excel formula you can use =ISERR(A1) or =ISERROR(A1) In a VBA macro you can use IsError(sheet.Cells(1, 1)) But using a VSTO Excel Addin project I did not found similar function under the ...
8
votes
1answer
1k views

Accessing a VSTO application-addin types from VBA (Excel)

We have a VSTO application-addin (not a document-addin) for Excel, and we want to expose an event to VBA code so that the VBA macro can do some action when this event fires in the addin. How can I ...
7
votes
2answers
2k views

VSTO: process mail using newmailex before outlook rules move mail

I am creating an addon for Outlook 2007 that reads a mail item when it is received, and then rewrites it. The addon works great, and rewrites the mail for items that do not have an Outlook rule that ...
6
votes
4answers
235 views

What does object[,] mean in c#?

So I came across some code of mine from an old VSTO project, and noted this little bit: Excel.Worksheet sheet = Globals.ThisAddIn.Application.Worksheets["Unique Hits Per URL"]; ...
6
votes
1answer
1k views

How do I create a real-time Excel automation add-in in C# using RtdServer?

I was tasked with writing a real-time Excel automation add-in in C# using RtdServer for work. I relied heavily on the knowledge that I came across in Stack Overflow. I have decide to express my ...
6
votes
6answers
546 views

How do I check if a COM dll is registered in C#

I created a Office Add-In in VS 2008, C#, .NET 3.5, and VSTO. It is deployed via ClickOnce. A run-time configuration form executes regsvr32 to register "fooapi.dll" included with the project that can ...
6
votes
2answers
2k views

Is it possible to create an Office 2003 VSTO add-in from Visual Studio 2010?

We have existing VS 2008 VSTO add-ins for Word 2003 and Excel 2003. We are unable to upgrade the Office version at this time. We have just tried to upgrade our solution to VS 2010 and it converts and ...
6
votes
2answers
188 views

Testing VSTO Applications?

I'm developing a Word 2007 VSTO application in VS2008. The part of the application that interacts with VSTO is difficult to test. VSTO objects behave differently than most class libraries. Their state ...
6
votes
3answers
760 views

How to deploy C# code and VBA scripts in one VSTO Word addin

Underlying problem I was trying to solve is to apply custom key bindings for internal VSTO Word addin methods (develiped in C#): Globals.ThisAddIn.Application.KeyBindings.Add( ...
6
votes
4answers
735 views

Convert Word doc file to docx on a server without Word

I would like to use c# to convert a doc file to docx file. Can this be done without Word on a server?
6
votes
4answers
1k views

Is there a future for PowerPoint VBA/VSTO?

Does anyone know what the future holds for VBA/VSTO programming in PowerPoint? I've been working on a Office automation project and find it frustrating to work with PowerPoint in particular since it ...
6
votes
2answers
2k views

Will VSTO add-ins developed for Office 2007 work in Office 2010?

Are the VSTO add-ins that were developed for Office 2007 compatible with Office 2010? If not, what would need to be done to upgrade them to run in 2010?
6
votes
3answers
7k views

How to easily create an Excel UDF with VSTO Add-in project

First of I apologize beforehand if this question seems rather “noobish” – but I am entirely new to VSTO development and to StackOverflow, so please bear with me. Thanks :-) What I am trying to do is ...
6
votes
3answers
330 views

Microsoft Visual Studio Tools for Office. Is it worth using?

It seems like deployment of VSTO code is very cumbersome. My use case is I need to enforce a certain content structure in word. Am I better of doing it all in VBA?
5
votes
4answers
169 views

error: Could not load the file or assembly 'ExcelAddIn1.XmlSerializers' or one of it's dependencies. The system cannot find the file specified

I have an Add-in project for excel. It works fine on my computer. But when I install it on a client machine it gives me the error message i mentioned. I have Published it using project-> ...
5
votes
1answer
241 views

c# VSTO Outlook link image without it being embedded

I am trying to add an HTML link with an image as the anchor, but when I hit send, Outlook automatically embeds the image in the email which makes it more susceptible to being caught as spam. ...
5
votes
1answer
326 views

VSTO Ribbons and Interop

Is it possible to handle button click events on a custom ribbon button from another application using interop? So if I've created a Word 2010 application add-in which creates a custom tab with ...
5
votes
3answers
599 views

Has VS 2010 SP1 changed where the .config file is picked up from in VSTO add ins?

I have an outlook 2010 add-in that has a service reference to a simple web service we have set up. The config for the service is in the app.config file. This add-in is deployed using windows installer ...
5
votes
1answer
310 views

How to unit test Excel VBA code

Has anyone got any experience of unit testing Excel VBA code? I want to introduce unit tests into some legacy Excel VBA code as painlessly as possible, so would appreciate some pointers to any ...
5
votes
6answers
3k views

Fastest way to interface between live (unsaved) Excel data and C# objects

I want to know what the fastest way is of reading and writing data to and from an open Excel workbook to c# objects. The background is that I want to develop a c# application that is used from Excel ...
5
votes
1answer
2k views

Installing VSTO 4.0 Causes VSTO 3.0 Addin to quit working

I just installed Visual Studio 2010 yesterday. As part of that I installed VSTO 4.0. Now when I run any Office application, my VSTO 3.0 addins fail to load. The error in the event log is ...
5
votes
3answers
381 views

Need to place a floating modeless form over excel main window (quasi-task pane)

Hi I need to emulate a task pane by floating a modeless form over the Excel main window. The reason for this requirement is that I need to have taskpane features for my Excel 2003 add-in, but cannot ...
5
votes
1answer
3k views

Visual Studio 2008 Setup Project - Include .NET Framework 3.5

I built a Visual Studio 2008 setup Project wich depends on .NET 3.5. I added Prerequisites like: .NET 3.5, Microsoft office interoperability, VS tools for office System 3.0 Run time, .etc. After that ...
5
votes
3answers
250 views

How do I add a VSTO project as a reference to a unit testing project?

In order not to pollute my projects with unit tests, I like to create a separate project for my unit tests; I add a reference to the project under test in the unit tests project. However, this isn't ...
5
votes
6answers
1k views

How can I destroy COM objects in C#?

What are the methods to destroy Excel COM Interop objects in C#, besides these: object_instance = null; System.GC.collect(); & System.Runtime.InteropServices.Marshal.ReleaseComObject(object); ...
5
votes
1answer
473 views

Visual Studio 2008 Office Interop 2003 vs 2007

I am developing an add-in for Microsoft Excel, using Visual Studio .NET 2008. The add-in creates a single toolbar button, which can be clicked to launch a form, which can be used to add values from a ...
5
votes
2answers
836 views

best content on how to deploy and share a VSTO solution

with the push to leverage visual studio and dotnet with office based solutions, especially excel, where is the best article or information on how having office sheet with additional binaries and ...
5
votes
14answers
2k views

Reason not to use LINQ

Are there any good Reasons not to use LINQ in my projcts? We use .Net 3.5 and VSTO 3.0.
5
votes
3answers
2k views

Call methods written in C# in Excel 2007 from cell formulas

I am using Excel 2007. I have C# code written in a separate binary. The code uses static classes and static methods on the classes. I have a reference to the DLL in my VSTO Excel Worksheet project. ...
5
votes
5answers
1k views

Word VSTO swallows exceptions at runtime without debugging?

Place this code somewhere in a Word document level VSTO solution outside of ThisDocument_Startup (create a ribbon button, with a click event): int zero = 0; int divideByZero = 10 / zero; Start ...
5
votes
2answers
3k views

How does Excel VSTO Work?

How does Excel VSTO Work? If I create an Excel Workbook solution in Visual Studio 2005 then I can happily code away, access a full Excel object model and even treat the Excel sheet as a design ...
5
votes
9answers
28k views

How to iterate through all the cells in Excel VBA or VSTO 2005

I need to simply go through all the cells in a Excel Spreadsheet and check the values in the cells. The cells may contain text, numbers or be blank. I am not very familiar / comfortable working with ...
5
votes
5answers
746 views

Exposing .net methods as Excel functions?

I have a set of calculation methods sitting in a .Net DLL. I would like to make those methods available to Excel (2003+) users so they can use them in their spreadsheets. For example, my .net ...
5
votes
3answers
2k views

.NET - Excel ListObject autosizing on databind

I'm developing an Excel 2007 add-in using Visual Studio Tools for Office (2008). I have one sheet with several ListObjects on it, which are being bound to datatables on startup. When they are bound, ...
4
votes
1answer
43 views

Outlook Add-in. Place a form instead message pane and reading pane

Can somebody tell me how to display a form in the area marked red, or at least how this area can be reached from my application. Any help appreciated.
4
votes
2answers
110 views

VSTO: getting Excel cell properties in “bulk”

When fetching values from a range in Excel, it is much more efficient to get the values in "bulk" (as a 2D array) than looping through each row and column. For example: Dim range = ...
4
votes
2answers
313 views

vsto: getting email address of a recipient which is an exchange user

In my VSTO Outlook 2007 plug-in, I am able to get the email address of a recipient which is an exchange user. But when I have the following case, it does not return me the smtp email: Add a new ...
4
votes
0answers
327 views

Word Document in Sharepoint - VSTO

Here is what I have done. Created a document template [ word 2010 ] in VS 2010. Added few content controls to the document. List item On save event, calling DB [ using EF] Publish to a network ...
4
votes
1answer
542 views

Access Excel cell value in c#

Cell A1 contains value "=A2" Cell A2 contains "Microsoft". When I access cell A1 through c# I get "Microsoft". How to access "=A2" value of cell A1? Microsoft.Office.Interop.Excel.Range cell //it ...
4
votes
3answers
445 views

Is there any way for Validating cell value in excel (vsto)

Suppose i have some value in excel cell,its type may be anything date,numeric or string and i want that cell to be validated against its type... Is there any way of doing this ? thanks in advance..
4
votes
1answer
410 views

How can I drag and drop from Excel cells to a drag-enabled task pane programatically?

I am using Excel 2007, VS2008 Pro. I am building a VSTO Add-in that requires "drag and drop from Excel cells to a drag-enabled task pane". So far I notice that I can only drag and drop within the ...
4
votes
1answer
202 views

Get Normal Font Style in PowerPoint

I'm trying to check a presentation for the fonts that exist in it. This can be done with ActivePresentation.Fonts. I also want to check if the font is normal, bold and/or italic. Bold and Italic are ...
4
votes
2answers
2k views

Word 2010 addin does not load, vsto 2010

Our development machine is 64 bit hardware running Windows 7 Professional N (64 bit), 64 bit Office Professional 2010 and Visual Studio Professional 2010. We created a Word 2010 (Application Level ...
4
votes
1answer
99 views

Invoke Excel macro recorder from code

I need a way to programatically launch the macro-recorder in Excel, and supply the name for the new macro that will get created. This can be from VSTO or VBA, or using the Office interop assemblies. ...
4
votes
1answer
432 views

Programmatically play the sound of a shape in PowerPoint

I am working on a PowerPoint 2007 VSTO add-in, and I am running in a small issue. The add-in adds sounds to the current slide using the following code: var shape = ...

1 2 3 4 5 26