Events
May 19, 6 PM - May 23, 12 AM
Calling all developers, creators, and AI innovators to join us in Seattle @Microsoft Build May 19-22.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
This walkthrough demonstrates how to create a custom task pane that automates PowerPoint. The custom task pane inserts dates into a slide when the user clicks a MonthCalendar control that is on the custom task pane.
Applies to: The information in this topic applies to VSTO Add-in projects for Outlook. For more information, see Features available by Office application and project type.
Although this walkthrough uses PowerPoint specifically, the concepts demonstrated by the walkthrough are applicable to any applications that are listed above.
This walkthrough illustrates the following tasks:
Designing the user interface of the custom task pane.
Automating PowerPoint from the custom task pane.
Displaying the custom task pane in PowerPoint.
Note
Your computer might show different names or locations for some of the Visual Studio user interface elements in the following instructions. The Visual Studio edition that you have and the settings that you use determine these elements. For more information, see Personalize the Visual Studio IDE.
You need the following components to complete this walkthrough:
An edition of Visual Studio that includes the Microsoft Office developer tools. For more information, see Configure a computer to develop Office solutions.
Microsoft PowerPoint 2010 or PowerPoint 2013 .
The first step is to create a VSTO Add-in project for PowerPoint.
Create a PowerPoint VSTO Add-in project with the name MyAddIn, by using the PowerPoint Add-in project template. For more information, see How to: Create Office projects in Visual Studio.
Visual Studio opens the ThisAddIn.cs or ThisAddIn.vb code file and adds the MyAddIn project to Solution Explorer.
There is no visual designer for custom task panes, but you can design a user control with the layout you want. Later in this walkthrough, you will add the user control to the custom task pane.
On the Project menu, click Add User Control.
In the Add New Item dialog box, change the name of the user control to MyUserControl, and click Add.
The user control opens in the designer.
From the Common Controls tab of the Toolbox, drag a MonthCalendar control to the user control.
If the MonthCalendar control is larger than the design surface of the user control, resize the user control to fit the MonthCalendar control.
The purpose of the VSTO Add-in is to put a selected date on the first slide of the active presentation. Use the DateChanged event of the control to add the selected date whenever it changes.
In the designer, double-click the MonthCalendar control.
The MyUserControl.cs or MyUserControl.vb file opens, and an event handler for the DateChanged event is created.
Add the following code to the top of the file. This code creates aliases for the Microsoft.Office.Core and PowerPoint namespaces.
Add the following code to the MyUserControl
class. This code declares a Shape object as a member of MyUserControl
. In the following step, you will use this Shape to add a text box to a slide in the active presentation.
Replace the monthCalendar1_DateChanged
event handler with the following code. This code adds a text box to the first slide in the active presentation, and then adds the currently selected date to the text box. This code uses the Globals.ThisAddIn
object to access the object model of PowerPoint.
private void monthCalendar1_DateChanged(object sender, DateRangeEventArgs e)
{
try
{
if (textbox != null)
{
textbox.Delete();
}
PowerPoint.Slide slide =
Globals.ThisAddIn.Application.ActivePresentation.Slides[1];
textbox = slide.Shapes.AddTextbox(
Office.MsoTextOrientation.msoTextOrientationHorizontal,
50, 100, 600, 50);
textbox.TextFrame.TextRange.Text = e.Start.ToLongDateString();
textbox.TextFrame.TextRange.Font.Size = 48;
textbox.TextFrame.TextRange.Font.Color.RGB =
Color.DarkViolet.ToArgb();
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
In Solution Explorer, right-click the MyAddIn project and then click Build. Verify that the project builds without errors.
To display the custom task pane when the VSTO Add-in starts, add the user control to the task pane in the Startup event handler of the VSTO Add-in.
In Solution Explorer, expand PowerPoint.
Right-click ThisAddIn.cs or ThisAddIn.vb and click View Code.
Add the following code to the ThisAddIn
class. This code declares instances of MyUserControl
and CustomTaskPane as members of the ThisAddIn
class.
Replace the ThisAddIn_Startup
event handler with the following code. This code creates a new CustomTaskPane by adding the MyUserControl
object to the CustomTaskPanes
collection. The code also displays the task pane.
When you run the project, PowerPoint opens and the VSTO Add-in displays the custom task pane. Click the MonthCalendar control to test the code.
Press F5 to run your project.
Confirm that the custom task pane is visible.
Click a date in the MonthCalendar control on the task pane.
The date is inserted into the first slide in the active presentation.
You can learn more about how to create custom task panes from these topics:
Create a custom task pane in a VSTO Add-in for a different application. For more information about the applications that support custom task panes, see Custom task panes.
Create a Ribbon button that can be used to hide or display a custom task pane. For more information, see Walkthrough: Synchronize a custom task pane with a Ribbon button.
Create a custom task pane for every e-mail message that is opened in Outlook. For more information, see Walkthrough: Display custom task panes with email messages in Outlook.
Events
May 19, 6 PM - May 23, 12 AM
Calling all developers, creators, and AI innovators to join us in Seattle @Microsoft Build May 19-22.
Register todayTraining
Module
Build Office Add-ins for Outlook - Training
This module walks through development of Office Add-ins for Microsoft Outlook.
Certification
Microsoft Office Specialist: PowerPoint (Office 2016) - Certifications
Demonstrate that you have the skills needed to get the most out of PowerPoint 2016 by earning a Microsoft Office Specialist (MOS) certification.