Populate documents with data from a database

You can access data in document-level projects for Microsoft Office in the same way that you access data in Windows Forms projects. You use the same tools and code to bring the data from a database into your solution, and you can use Windows Forms controls to display the data.

In addition, you can display data by using host controls. Host controls are native objects in Microsoft Office Word 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 Word. 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 VSTO Add-in projects at run time, see Walkthrough: Simple data binding in VSTO Add-in project.

link to video For a related video demonstration, see Bind data to Word 2007 content controls Using Visual Studio Tools for the Office system (3.0).

Add a control to a document at design time

To populate a document with data from a database

  1. Open a Word document-level project in Visual Studio, with the document open in the designer.

  2. Open the Data Sources window and create a data source from a database. For more information, see Add new connections.

  3. Drag the field you want from the Data Sources window to your document.

A content control is added to the document. The type of content control depends on the data type of the field you selected. For more information, see Content controls.

You can add a different control by selecting the data 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.