How to: Populate Documents with Data from Objects

Accesing data in a data object works the same way in document-level projects for Microsoft Office Word as it does in Windows Forms projects. You use the same tools and code to bring the data from an object 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 and application-level projects for the following applications: Excel 2013 and Excel 2010; Word 2013 and Word 2010. For more information, see Features Available by Office Application and Project Type.

You must complete three basic steps to populate the document with data from an object:

  • Add a control to the document that you can bind to data.

  • Add a data object to the document.

  • Connect the data object to the BindingSource.

Adding a Data Object

To add a data object

Connecting the Data Object to the BindingSource

In document-level projects, you add controls to your document and bind them to data at design time.

In application-level projects, you create controls and bind them at run time.

Document-Level Projects

To connect the data object to the BindingSource

  1. Drag the data field you want from the Data Sources window to your document. This automatically creates a control.

  2. In your code, create an instance of the type of the object that you chose for the data source.

  3. Assign the instance to the DataSource property of the BindingSource.

Application-Level Projects

To connect the data object to the BindingSource

  1. In your code, create an instance of the type of the object that is associated with the data source.

  2. Create an instance of a BindingSource.

  3. Assign the data source instance to the DataSource property of the BindingSource.

  4. Add the data source as a databinding to the control.

See Also

Tasks

How to: Populate Documents with Data from a Database

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

Reference

BindingSource Component Overview

Concepts

Data Sources Overview

Binding Windows Forms Controls to Data in Visual Studio

Connecting to Data in Windows Forms Applications

Other Resources

Binding Data to Controls in Office Solutions