Walkthrough: Binding Data to Controls on an Excel Actions Pane

This walkthrough demonstrates data binding to controls on an actions pane in Microsoft Office Excel. The controls demonstrate a master/detail relation between tables in a SQL Server database.

Applies to: The information in this topic applies to document-level projects for Excel 2007 and Excel 2010. For more information, see Features Available by Office Application and Project Type.

This walkthrough illustrates the following tasks:

  • Adding controls to a worksheet.

  • Creating an actions pane control.

  • Adding data-bound Windows Forms controls to an actions pane control.

  • Showing the actions pane when the application opens.

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 Working with Settings.

Prerequisites

You need the following components to complete this walkthrough:

-

An edition of Visual Studio 2010 that includes the Microsoft Office developer tools. For more information, see [Configuring a Computer to Develop Office Solutions](bb398242\(v=vs.100\).md).
  • Excel 2007 or Excel 2010.

  • Access to a server with the Northwind SQL Server sample database.

  • Permissions to read from and write to the SQL Server database.

Creating the Project

The first step is to create an Excel Workbook project.

To create a new project

  • Create an Excel Workbook project with the name My Excel Actions Pane. In the wizard, select Create a new document. For more information, see How to: Create Office Projects in Visual Studio.

    Visual Studio opens the new Excel workbook in the designer and adds the My Excel Actions Pane project to Solution Explorer.

Adding a New Data Source to the Project

To add a new data source to the project

  1. If the Data Sources window is not visible, click Show Data Sources on the Data menu.

    Note

    If Show Data Sources is not available, click inside the Excel worksheet and then check again.

  2. Click Add New Data Source to start the Data Source Configuration Wizard.

  3. Select Database and then click Next.

  4. Select a data connection to the Northwind sample SQL Server database, or add a new connection by using the New Connection button.

  5. Click Next.

  6. Clear the option to save the connection if it is selected, and then click Next.

  7. Expand the Tables node in the Database objects window.

  8. Select the check box next to the Suppliers table.

  9. Expand the Products table and select ProductName, SupplierID, QuantityPerUnit, and UnitPrice.

  10. Click Finish.

The wizard adds the Suppliers table and Products table to the Data Sources window. It also adds a typed dataset to your project that is visible in Solution Explorer.

Adding Controls to the Worksheet

Next, add a NamedRange control and a ListObject control to the first worksheet.

To add a NamedRange control and a ListObject control

  1. Verify that the My Excel Actions Pane.xls workbook is open in the Visual Studio designer, with Sheet1 displayed.

  2. In the Data Sources window, expand the Suppliers table.

  3. Click the drop-down arrow on the Company Name node, and then click NamedRange.

  4. Drag Company Name from the Data Sources window to cell A2 in Sheet1.

    A NamedRange control named CompanyNameNamedRange is created, and the text <CompanyName> appears in cell A2. At the same time, a BindingSource named suppliersBindingSource, a table adapter, and a DataSet are added to the project. The control is bound to the BindingSource, which in turn is bound to the DataSet instance.

  5. In the Data Sources window, scroll down past the columns that are under the Suppliers table. At the bottom of the list is the Products table; it is here because it is a child of the Suppliers table. Select this Products table, not the one that is at the same level as the Suppliers table, and then click the drop-down arrow that appears.

  6. Click ListObject in the drop-down list, and then drag the Products table to cell A6 in Sheet1.

    A ListObject control named ProductNameListObject is created in cell A6. At the same time, a BindingSource named productsBindingSource and a table adapter are added to the project. The control is bound to the BindingSource, which in turn is bound to the DataSet instance.

  7. For C# only, select suppliersBindingSource on the component tray, and change the Modifiers property to Internal in the Properties window.

Adding Controls to the Actions Pane

Next, you need an actions pane control that contains a combo box.

To add an actions pane control

  1. Select the My Excel Actions Pane project in Solution Explorer.

  2. On the Project menu, click Add New Item.

  3. In the Add New Item dialog box, select Actions Pane Control, name it ActionsControl, and click Add.

To add data-bound Windows Forms controls to an actions pane control

  1. From the Common Controls tabs of the Toolbox, drag a ComboBox control to the actions pane control.

  2. Change the Size property to 171, 21.

  3. Resize the user control to fit the combo box.

Binding the Control on the Actions Pane to Data

In this section, you will set the data source of the ComboBox to the same data source as the NamedRange control on the worksheet.

To set data binding properties of the control

  1. Right-click the actions pane control, and then click View Code.

  2. Add the following code to the Load event of the actions pane control.

    Private Sub ActionsControl_Load(ByVal sender As Object, ByVal e As System.EventArgs) _
        Handles Me.Load
    
        Me.ComboBox1.DataSource = Globals.Sheet1.SuppliersBindingSource
        Me.ComboBox1.DisplayMember = "CompanyName"
    End Sub
    
    private void ActionsControl_Load(object sender, EventArgs e)
    {
        this.comboBox1.DataSource = Globals.Sheet1.suppliersBindingSource;
        this.comboBox1.DisplayMember = "CompanyName";
    }
    
  3. In C#, you must create an event handler for the ActionsControl. You can place this code in the ActionsControl constructor. For more information about creating event handlers, see How to: Create Event Handlers in Office Projects.

    public ActionsControl()
    {
        InitializeComponent();
        this.Load += new EventHandler(ActionsControl_Load);
    }
    

Showing the Actions Pane

The actions pane is not visible until you add the control at run time.

To show the actions pane

  1. In Solution Explorer, right-click ThisWorkbook.vb or ThisWorkbook.cs, and then click View Code.

  2. Create a new instance of the user control in the ThisWorkbook class.

    Dim actions As New ActionsControl
    
    ActionsControl actions = new ActionsControl();
    
  3. In the Startup event handler of ThisWorkbook, add the control to the actions pane.

    Private Sub ThisWorkbook_Startup(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Startup
    
        Me.ActionsPane.Controls.Add(actions)
    End Sub
    
    private void ThisWorkbook_Startup(object sender, System.EventArgs e)
    {
        this.ActionsPane.Controls.Add(actions);
    }
    

Testing the Application

Now you can test your document to verify that the actions pane opens when the document is opened, and that the controls have a master/detail relation.

To test your document

  1. Press F5 to run your project.

  2. Confirm that the actions pane is visible.

  3. Select a company in the list box. Verify that the company name is listed in the NamedRange control and that the product details are listed in the ListObject control.

  4. Select various companies to verify the company name and product details change as appropriate.

Next Steps

Here are some tasks that might come next:

See Also

Tasks

How to: Manage Control Layout on Actions Panes

Other Resources

Actions Pane Overview

Binding Data to Controls in Office Solutions