Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Browse by Tags
MSDN Blogs
>
Office Development with Visual Studio
>
All Tags
>
harry miller
Server & Tools Blogs
>
Developer Tools Blogs
Executive Bloggers
S. Somasegar
Brian Harry
Scott Guthrie
Jason Zander
Visual Studio
Visual Studio
Blend
LightSwitch
Line of Business Apps by Beth Massi
Setup & Install by Heath Stewart
Application Lifecycle Management
Visual Studio ALM
Team Foundation Service
Languages
Visual Basic
Visual C#
Visual C++
Visual F#
JavaScript
.NET Framework
.NET Framework
.NET Parallel Programming
ADO.NET (Managed Providers, DataSet & EF)
ASP.NET by Scott Hanselman
Base Class Library (BCL)
Silverlight
WCF Data Services
Workflow
Platform Development
Internet Explorer
Apps for Office and SharePoint 2013
SharePoint
Office
Web
Windows 8
Windows Store
Windows Azure
Windows Phone
Office Blog
Develop Office Business Applications using Visual Studio
Subscribe
Comments
Contact
Menu
Blog Home
Atom
Translate this page
Powered by
Microsoft® Translator
Recent Posts
Office Developer Tools for Visual Studio 2012: Now Available with Office 2013 and .NET Framework 4.5 support
Posted
2 months ago
by
VSTOTeam
5
Comments
Creating a Bootstrapper package for an Office 2013 VSTO Add-in with Visual Studio 2012
Posted
5 months ago
by
VSTOTeam
10
Comments
VSTO Developer Center is now part of the Office Developer Center
Posted
over 2 years ago
by
VSTOTeam
2
Comments
Migrating VSTO 2005/2008 InfoPath Projects to InfoPath 2010
Posted
over 2 years ago
by
VSTOTeam
0
Comments
Live Now on Developer Tools Blogs
Tags
add-ins
audio
build process
Command bars
Deployment
Excel 2007
Kemp Brown
Mary Lee
McLean Schofield
migration
MODShow
overview
Ribbon
runtime
sample
VB
video
VSTO
Word 2007
WPF
Related resources
Visual Studio Developer Center
Visual Studio Product Website
Archives
Archives
March 2013
(1)
December 2012
(1)
August 2011
(1)
April 2011
(1)
January 2011
(1)
November 2010
(2)
October 2010
(1)
September 2010
(1)
August 2010
(1)
June 2010
(7)
May 2010
(3)
April 2010
(6)
March 2010
(6)
February 2010
(3)
January 2010
(3)
December 2009
(5)
November 2009
(2)
October 2009
(4)
September 2009
(1)
August 2009
(4)
July 2009
(1)
June 2009
(5)
May 2009
(10)
April 2009
(6)
March 2009
(5)
February 2009
(3)
January 2009
(1)
December 2008
(5)
November 2008
(5)
October 2008
(4)
September 2008
(4)
August 2008
(5)
July 2008
(7)
June 2008
(6)
May 2008
(12)
April 2008
(6)
March 2008
(3)
February 2008
(8)
January 2008
(4)
December 2007
(1)
More
▼
Less
▲
Tagged Content List
Blog Post:
Word Add-ins Part 3: Search for Text Strings in Documents and Add Comments (Harry Miller)
VSTOTeam
You can search the text in any open Microsoft Office Word document for specific strings if you put the code in an application-level add-in. When you find an instance of the string, you can perform some action on it. This video shows how to flag the string with a comment that contains text passed in from...
on
10 Sep 2008
Blog Post:
Word Add-ins Part 2: When Add-ins Collide (Harry Miller)
VSTOTeam
When you build an add-in project, it installs the add-in on your development computer. Even if you close that project and start another, or even close Visual Studio entirely, all add-ins you have built will still run when you start the Office application on that computer. If you're not expecting the...
on
5 Sep 2008
Blog Post:
Word Add-ins Part 1: Clear the Ribbon Except for My Controls (Harry Miller)
VSTOTeam
You can easily customize the Ribbon to show only the controls you want to display. This video shows how to clear the Ribbon in Microsoft Office Word so it contains only a single button. The button inserts a graphic into the open Word document at the cursor location. Why? Well, really it's just to demo...
on
2 Sep 2008
Blog Post:
Create an Excel Shortcut Menu That Writes Selected Values to a Text File (Harry Miller)
VSTOTeam
It doesn't take much code to add a command to a shortcut menu in Excel, but the menu objects have strange names so it's not intuitive, to me at least. The trickiest part is just sorting out how it's supposed to work, because it seems like it should be different from adding buttons to toolbars, but it...
on
22 Aug 2008
Blog Post:
Activating a Custom Tab on the Ribbon When a Document Is Opened (Harry Miller)
VSTOTeam
A lot of people would like to do this. It makes sense that a developer would want to select the custom tab automatically, if the controls that are most useful for the current document are all on that tab. This video goes in-depth about this programming question. OK, not really. The video just says...
on
12 Aug 2008
Blog Post:
Automatic project conversion / migration (Harry Miller)
VSTOTeam
By default, Visual Studio automatically converts Office 2003 projects into Office 2007 projects when you open the project, if you have the 2007 Office system installed on your development computer. But you can change that default behavior. Resources Forum: Visual Studio 2008 converts its own Office 2003...
on
24 Jul 2008
Blog Post:
Removing Customization Code Before E-Mailing a Document (Harry Miller)
VSTOTeam
When you create a document-level customization for a document, all the copies of the document will be customized too. Even if you save a copy of the document with a different name, when the document is opened it'll try to find and run the code. All the saved data will still be there, it'll just pop up...
on
18 Jul 2008
Blog Post:
Assembly Could Not Be Found or Could Not Be Loaded (Harry Miller)
VSTOTeam
This video tells the story of someone who created an Excel 2003 workbook project in Visual Studio 2008. No matter what configuration he tried on the client machine, he got this error when opening the workbook: The assembly could not be found or could not be loaded. Here's the setup: Windows XP...
on
10 Jul 2008
Blog Post:
Catching Save or SaveAs in Word 2007 (Harry Miller)
VSTOTeam
You can override Ribbon commands and run your own code for Save or Save As, or you can simply cancel attempts to save a document in the DocumentBeforeSave event handler. Code and resources: Forum post: Microsoft Word 2007 Disable Save As Temporarily Repurpose Commands on the Office Fluent Ribbon...
on
3 Jul 2008
Blog Post:
WPF in Office Solutions (Harry Miller)
VSTOTeam
A few months ago, Andrew Whitechapel wrote an article and sample application that demonstrates combining the native capabilities of an Office client application with the UI capabilities of WPF. Behind the UI, the application is connected to remote data and services via WCF and uses the RAD features of...
on
25 Jun 2008
Blog Post:
Microsoft Office Developer Show Episode 5 (Harry Miller)
VSTOTeam
In this episode: a tip about setting the background color of a custom task pane to match the Office theme, and about calling functions in add-ins from other add-ins. Plus, Mary creates an Outlook add-in that helps her remember attachments. Duration: 5 minutes, 4 seconds Related resources for more information...
on
18 Jun 2008
Blog Post:
Microsoft Office Developer Show Episode 4 (Harry Miller)
VSTOTeam
In this episode: a tip about saving and restoring the position of custom toolbars in Outlook 2007, and how to copy values from one worksheet and paste them in another. Plus, Mary finishes her Excel application and sends it to her boss in e-mail. Duration: 4 minutes, 33 seconds Related resources for more...
on
11 Jun 2008
Blog Post:
Microsoft Office Developer Show Episode 3 (Harry Miller)
VSTOTeam
In this episode: a tip about serializing data in a Word document so users can't see it, and why content controls disappear from documents if you add them at run time. Plus, Mary customizes the Ribbon in Excel so her boss Kemp doesn't need to use button controls on the worksheet itself. Duration: 5 minutes...
on
3 Jun 2008
Blog Post:
Office development audio series 3 is now available (Harry Miller)
VSTOTeam
This series focuses on development tasks that are common as part of developing Office solutions, and describes the tools in Visual Studio 2008 that help you do these tasks quicker. The series is organized as short, five-minute episodes that you can listen to while you drive, travel, exercise, eat lunch...
on
30 May 2008
Blog Post:
Microsoft Office Developer Show Episode 2 (Harry Miller)
VSTOTeam
In this episode: a tip about how to save a new copy of a Word document instead of saving over the original, and how to create a class in an Outlook project to access methods without hitting the object model security prompts. Plus, Mary creates a quick data UI in Excel for her boss Kemp. Related resources...
on
28 May 2008
Blog Post:
Microsoft Office Developer Show Episode 1 (Harry Miller)
VSTOTeam
This episode has a tip about adding controls to Word documents, a case file about how Canada Post solved its data entry problems, and what to do when an add-in doesn't run and there's no error message. ";" galleryimg="no" mce_src="http://blogs.msdn.com/blogfiles/vsto/WindowsLiveWriter/MicrosoftOfficeDeveloperShowEpisode1_C0DD...
on
21 May 2008
Blog Post:
Office development audio series 2 is now available (Harry Miller)
VSTOTeam
This series focuses on the main components or features of Visual Studio 2008 Professional that you can use for Office development. It's organized as short, five-minute episodes that you can listen to while you drive, travel, exercise, eat lunch, or whenever you usually listen to your portable MP3 player...
on
15 May 2008
Blog Post:
Office development audio series 1 is now available (Harry Miller)
VSTOTeam
If you'd like a quick introduction to the main aspects of Office development using Visual Studio 2008 Professional, you can now get it while you drive, travel, exercise, eat lunch, or whenever you usually listen to your portable MP3 player. (Of course, you can also listen at your computer with your usual...
on
17 Apr 2008
Page 1 of 1 (18 items)