Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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?
3
votes
2answers
648 views

What is the best way to create user help documentation for an Excel VBA solution?

VBA solutions can vary widely in size. I would like to add user help documentation to all solutions but the level of effort to create and deploy the help needs to match the size of the solution.
2
votes
4answers
736 views

Expose VSTO functionality to VBA w/o local admin

What would be the best way to expose certain functionality in a Dotnet VSTO Excel add-in to VBA, without requiring the user to be a local administrator (i.e. no COM registration, no HttpListener)? ...
1
vote
2answers
60 views

Distributing Office Applications built in Excel - Multiple Versions, Copying data in from old version

I'm working on a project where we'd like to be able to deploy an Excel spreadsheet to multiple users, and then be able to update that spreadsheet to different versions as the project progresses. ...
1
vote
2answers
179 views

Will the Microsoft Office Information Bridge Framework Work With Office 2010?

I have inherited an application built using the Microsoft Office Information Bridge Framework 1.6. My task is to make this application work with Office 2010. I am testing this on a computer with the ...
1
vote
1answer
1k views

System.Windows.Forms.ToolStrip height or autosize

I'm using a series of ToolStrips in an Excel 2007 Actions Pane. I'm programatically adding buttons to each ToolStrip and then adding each ToolStrip to the actions pane. So far so good; my ToolStrips ...
1
vote
2answers
452 views

Selecting Office 2003/2007 COM Object (Correct One) in Winforms Application

We are creating a Windows Form application (C# or VB.NET) that needs to reference an Office 2003 or Office 2007 COM object, depending on the version of office installed. What is the best way to ...
1
vote
1answer
170 views

How to verify existence of a table with a given ID in a word doc in C# VSTO 3

I want to check for the existence of a table with a given ID in a word document in C# (VS 2008) Visual Studio Tools for Office (version 3). Obviously I can iterate through the document's Tables ...
0
votes
0answers
34 views

Excel Office Solution - Option Strict On - Late Binding when accessing Cell Values

I'm having a bit of trouble using Option Strict On. Below is the type of scenario that I'm having trouble with. When I try to cast the cell value as double, I get a late binding error. If I take ...
0
votes
1answer
209 views

PowerPoint Programming: Indentation with Ruler margin levels not working?

Recently we upgraded one our PowerPoint addin to support 2007 and 2010. most of the items we were able to port without problem. one problem we have is that indentations doesn't work when create ...
0
votes
1answer
406 views

Outlook 2010: Custom Task Items

I am interested to take an existing Outlook task and add some more attributes, methods, behaviors to it to make my own custom task item. Is it possible to extend an Outlook task? Can I use the ...
0
votes
0answers
49 views

Outlook 2010: Best way to tie a Ribbon tab to the Tasks view

I have added an Explorer tab which gets displayed everywhere regardless of which view I am on. Is there any way for me to restrict its visibility just the the "Tasks" view. i.e., it should only ...
0
votes
0answers
123 views

Outlook 2010: Customizing Account Settings form / Adding custom type of account

Is there a way for me to customize the Account Settings form in Outlook 2010. For example, I want to another tab to that page which enables users to add my custom type of accounts to Outlook other ...
0
votes
0answers
110 views

Outlook 2010: Customizing Send / Receive

I am interested to invoke my custom actions whenever someone clicks on the Send/Receive button and whenever the timer for the Send/Receive goes off. Could you please point me into the right ...
0
votes
1answer
914 views

In Excel automation, how to gracefully handle invalid file format error upon file opening?

I'm trying to open a Microsoft Excel file in a C# program using the 'excelApp.Workbooks.Open()' method. As it happens, if the format of the file is invalid, this method causes an error message box to ...
0
votes
2answers
144 views

Visual Studio Tools for Office (VSTO 2005) newbie deployment question

I have Visual Studio setup with a VSTO word project, and when I hit run it runs fine. But, how do I setup a word document to use my code without having Visual Studio running?
0
votes
4answers
1k views

Best practice for passing parameters in Microsoft Visual Studio Tools for Office (VSTO) 3 (C#)

Many of the parameters for interacting with the Office Object model in VSTO require object parameters that are passed by reference, even when the notional type of the parameter is an int or string. ...