Sign in
.NET4Office
A blog by Eric Carter
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
All Office and no play...
Great Moments at Work
InfoPath
Office Programming Model
Programmability
Archive
Archives
November 2009
(1)
May 2009
(10)
April 2009
(1)
March 2009
(9)
October 2008
(1)
August 2008
(2)
July 2008
(3)
June 2008
(1)
May 2008
(6)
April 2008
(18)
March 2008
(1)
February 2008
(1)
October 2007
(4)
July 2007
(3)
May 2007
(2)
April 2007
(8)
November 2006
(7)
October 2006
(2)
September 2006
(3)
August 2006
(2)
July 2006
(4)
June 2006
(6)
May 2006
(3)
April 2006
(1)
March 2006
(3)
February 2006
(2)
January 2006
(3)
November 2005
(3)
October 2005
(1)
September 2005
(6)
August 2005
(3)
July 2005
(1)
June 2005
(13)
May 2005
(3)
March 2005
(3)
February 2005
(2)
January 2005
(2)
December 2004
(2)
November 2004
(3)
October 2004
(9)
September 2004
(8)
August 2004
(4)
July 2004
(1)
June 2004
(3)
May 2004
(9)
April 2004
(31)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
.NET4Office
VB Code Samples for the VSTO for Office 2007 Book Now Available
Posted
over 4 years ago
by
Eric Carter
0
Comments
I wanted to make sure everyone knows that VB code samples for the VSTO for Office 2007 book are now available. You can download them here: http://www.informit.com/content/images/9780321533210/downloads/VB%20Code%20Listings.zip Long live VB!
.NET4Office
8. VSTO Bug Tracker : Using a Ribbon
Posted
over 4 years ago
by
Eric Carter
1
Comments
To get started, from the Project menu choose Add New Item. In the Add New Item dialog box, click Ribbon (Visual Designer). Then click the Add button. A new Ribbon is created and the Ribbon Designer is displayed. Next, click on the Group control that is...
.NET4Office
7. VSTO Bug Tracker : Using Document-Level Features in Add-Ins
Posted
over 4 years ago
by
Eric Carter
1
Comments
Prior to Visual Studio 2008 SP1, you couldn’t use common VSTO features like controls in the document and databinding to list objects at the add-in level. But with SP1 we introduced a way for you to use these features at the add-in level. In...
.NET4Office
6. VSTO Bug Tracker: Word Report Generation
Posted
over 4 years ago
by
Eric Carter
1
Comments
Another thing I want my bug tracking system to do is help me generate a weekly report with a summary table of key stats for all my teams. I want to do this in Word so I can add my own comments and a status summary of what went on during the week. We already...
.NET4Office
5. VSTO Bug Tracker : Using Cached Data
Posted
over 4 years ago
by
Eric Carter
1
Comments
We are now going to convert our previous sample to use cached data. In our current solution we have code that when the document loads, it calls a web service to get the bug data. We are going to use the cached data feature to allow us to call...
.NET4Office
4. VSTO Bug Tracker : Getting the data into Excel
Posted
over 4 years ago
by
Eric Carter
1
Comments
The next step is to get more of the bug data into Excel so we can start to analyze it. To do this, we will use VSTO’s data bind to ListObject support. I’m going to approach this in a different “more advanced” way that will make sense later in the...
.NET4Office
3. VSTO Bug Tracker : A UDF
Posted
over 4 years ago
by
Eric Carter
3
Comments
Now that we have our web service, lets get started by writing a managed UDF that uses the web method “GetColumnValue”. In fact, the UDF will mirror this web method and make it so we can use it in Excel formulas. First, add a new C# or VB class library...
.NET4Office
2. VSTO Bug Tracker : The Web Service
Posted
over 4 years ago
by
Eric Carter
1
Comments
Within Microsoft, there is a web service already implemented that I can use in my solution to call the bug tracking system and get back the data described in the previous article. For my demo, I’m going to implement a demo web service that will...
.NET4Office
1. VSTO Bug Tracker : The Data
Posted
over 4 years ago
by
Eric Carter
1
Comments
For my TechEd demo today, I will be showing a solution that helps me to do part of my job as a development manager: tracking the bug counts in the product. At Microsoft, we have an internal system that tracks a ton of relevant bug stats in TFS and takes...
.NET4Office
If you are using Windows 7 RC and VSTO you better read this
Posted
over 4 years ago
by
Eric Carter
1
Comments
Saurabh blogs about how to work around an error you get if you published a VSTO solution using VS2008 on a machine running the Windows 7 RC and then you try to install the solution on any machine you will see the following error: “The required version...
.NET4Office
Advanced Word & Excel 2007 Development in Visual Studio 2008 with VSTO (OFC 324)
Posted
over 4 years ago
by
Eric Carter
2
Comments
I will be at TechEd next week and will present a session on advanced VSTO: OFC324 Advanced Microsoft Office Word and Excel 2007 Development in Microsoft Visual Studio 2008 with Visual Studio Tools for Office Eric Carter Thursday 5/14/2009 1:00PM-2...
.NET4Office
Creating a Research Service for Word 2007 in C# with Visual Studio 2008
Posted
over 4 years ago
by
Eric Carter
1
Comments
This post examines how to build research services for Word and other Office applications. Word has a task pane called the Research task pane that enables you to enter a search term and search various sources for that search term. To display the Research...
.NET4Office
VSTO Community Activities in Vienna
Posted
over 4 years ago
by
Eric Carter
1
Comments
There are some great VSTO community activities going on in Vienna. Office Community Day is being held on May 8th in Vienna and is free. They will be covering: Introduction to VSTO OpenXML Deployment in VSTO SharePoint Workflows and more. ...
.NET4Office
Content Control Event Model in Word 2007
Posted
over 4 years ago
by
Eric Carter
4
Comments
New in Word 2007, content controls can be inserted into a document to provide more structure and control—for example when you have a section of the document that you want to allow the user to put a picture into or pick a value from a drop-down list. There...
.NET4Office
Object Model Changes for Developers Between Excel 2003 and Excel 2007
Posted
over 4 years ago
by
Eric Carter
1
Comments
There a lot of changes between Excel 2003 and Excel 2007 for developers. Here are some highlights that I found interesting in the object model. Note that you should use the trick I blog about in this post for more detailed comparisons . ...
.NET4Office
Changes in the Add-In Model between VSTO 2.0 and VSTO 3.0
Posted
over 4 years ago
by
Eric Carter
1
Comments
It is instructive to compare code from the previous edition of my book to see what changed between Outlook 2003 and Outlook 2007 as well as the changes to the add-in model between VSTO 2.0 and VSTO 3.0. This is a VSTO Outlook add-in that handles...
.NET4Office
Visual Studio Tools for Office 2007 Code Listings
Posted
over 4 years ago
by
Eric Carter
2
Comments
The C# code listings for the VSTO 2007 book are attached to this post. I will also get them posted to the book site in the next several days. Enjoy!
.NET4Office
Attaching to an already running Office application from your application using GetActiveObject or BindToMoniker
Posted
over 4 years ago
by
Eric Carter
1
Comments
One common pattern of Office development is the Office Automation Executable—a console or windows forms application that starts up an Office application and talks to it. Sometimes you won’t want to start a new instance of an Office application but...
.NET4Office
VSTO 3.0 Features – What Features For What Office Applications?
Posted
over 4 years ago
by
Eric Carter
1
Comments
With VSTO 3.0 in Visual Studio 2008, there are a lot of new features and it can be a bit of a challenge to keep track of what’s enabled for what application. The table below comes from my new book and shows the Office 2007 applications that are supported...
.NET4Office
Getting VSTO Projects to Build Without Installing Visual Studio
Posted
over 4 years ago
by
Eric Carter
1
Comments
I stumbled upon a couple of good posts about getting VSTO projects to build on a continuous integration machine that doesn’t have Visual Studio installed on it. Unfortunately we do not make this very easy to do, but these bloggers provide some help: Rinat...
.NET4Office
New VSTO 3.0 and Office 2007 Book Hot off the Presses
Posted
over 4 years ago
by
Eric Carter
8
Comments
I’m excited to announce that I have completed a new book on VSTO 2008 and Office 2007 that is hot off the presses. I just got a copy in the mail and as my editor said, it’s a “big baby”, 1055 pages of VSTO 3.0 goodness. This book was an interesting...
.NET4Office
Version2003 Version2007?
Posted
over 5 years ago
by
Eric Carter
1
Comments
Saw a weird bug in VSTO this weekend as I was setting up a new home machine (Quad core—woohoo!). After I installed VSTO, I got this in the new projects dialog: Version2003 and Version2007 were displayed rather than 2003 and 2007. Turns out that...
.NET4Office
Another Cool Outlook Post--Disabling Reply To All & Forward
Posted
over 5 years ago
by
Eric Carter
1
Comments
Scott Hanselman blogs on a simple VSTO Outlook add-in to disable the Reply To All and Forward buttons in Outlook .
.NET4Office
Nice Post on Building the next Xobni
Posted
over 5 years ago
by
Eric Carter
1
Comments
I really liked David Crow's post on building the next Xobni --has lots of practical advise about both the business and value adds OBAs can make as well as some good links to articles for beginners.
.NET4Office
Dynamically Creating a VSTO Worksheet in Visual Studio 2008 SP1
Posted
over 5 years ago
by
Eric Carter
1
Comments
Note that the approach described in this article is not supported by Microsoft. The GetVstoObject method is designed to be used primarily in application-level add-ins. Using this method in the way described in this article is an undocumented feature that...
Page 1 of 9 (214 items)
1
2
3
4
5
»