How to: Populate Worksheets with Data from a Database

You can access data in document-level Office projects in the same way that you access data in Windows Forms projects. You use the same tools and code to bring the data into your solution, and you can even use Windows Forms controls to display the data. In addition, you can take advantage of controls called host controls, which are native objects in Microsoft Office Excel that have been enhanced with events and data-binding capability. For more information, see Host Items and Host Controls Overview.

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

The following example shows how to add data-bound controls in document-level projects using a designer. For an example of how to add data-bound controls in application-level projects at run time, see Walkthrough: Complex Data Binding in an Application-Level Project.

link to video For a related video demonstration, see How Do I: Transfer Data Into an Excel Worksheet?, and How Do I: Consume Database Data in Excel?.

Adding a Data-Bound Control to a Worksheet at Design Time

To populate a worksheet with data from a database

  1. Open an Excel document-level project in Visual Studio, with the worksheet open in the designer.

  2. Open the Data Sources window and create a data source for your project. For more information, see How to: Connect to Data in a Database.

  3. Drag the field or table you want from the Data Sources window to your worksheet.

One of the following controls is created on the worksheet:

You can add a different control by selecting the table or field in the Data Sources window and then choosing a different control from the drop-down list.

Objects in the Project

In addition to the control, the following data-related objects are automatically added to your project:

When you run the project, the control displays the first record in the data source. You can use the BindingSource to enable users to scroll through the records.

To scroll through the records

For information about how to send updates to the typed dataset and the database, see How to: Update a Data Source with Data from a Host Control.

See Also

Tasks

How to: Populate Documents with Data from Objects

How to: Populate Documents with Data from a Database

How to: Populate Documents with Data from Services

How to: Update a Data Source with Data from a Host Control

Concepts

Data Sources Overview

Binding Windows Forms Controls to Data in Visual Studio

Other Resources

Binding Data to Controls in Office Solutions

How Do I: Transfer Data Into an Excel Worksheet

How Do I: Consume Database Data in Excel?