5
votes
3answers
247 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?
4
votes
3answers
346 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. …
3
votes
4answers
95 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?
3
votes
1answer
300 views
Open files in Word via ribbon code-behind
Using VSTO, I've created a custom tab in the Ribbon designer and added some groups and button controls there. When user clicks one of the buttons, I'd like to connect to a SharePoint site and open a …
3
votes
3answers
1k 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 …
3
votes
8answers
1k views
ClickOnce: The required version of the .NET Framework is not installed on this computer
I have been getting the error "The required version of the .NET Framework is not installed on this computer." (Event Id 4096 in Event log) when trying to install a VSTO application from both a …
3
votes
2answers
341 views
C# Technique - Getting Constant Values By String
Is there any good way to convert strings like "xlSum", "xlAverage", and "xlCount" into the value they have under Microsoft.Office.Interop.Excel.XlConsolidationFunction?
I guess reflection would be …
3
votes
7answers
808 views
Use VBA in Office 2007 Applications?
Is VBA going to go away any time soon, like VB6 has? Should I not develop new Office applications with VBA? Or should I be developing all new Office Apps with VSTO?
Update: Recently read this …
3
votes
5answers
392 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 …
3
votes
3answers
662 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, …
2
votes
6answers
92 views
Architecture Q - VBA Excel Macro or VS Tools For Office?
Hello,
I have requirements from our client where we basically have to 'parse' PDF files from various different sources.
The solution we have come with, as 'phase 1' (as we have short time to market …
2
votes
4answers
442 views
C# Excel import data from CSV into Excel
How do I import data in Excel from a CSV file using C#? Actually, what I want to achieve is similar to what we do in Excel, you go to the Data tab and then select From Text option and then use the …
2
votes
11answers
339 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.
2
votes
2answers
149 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 …
2
votes
2answers
54 views
Replacing DLL in Windows Installer Project
Hi,
I have a Windows Installer project built for my VSTO add-in. However, I have to run one of my DLLs through an obfuscator at the end, but if I try to build the setup project with the modified DLL, …
