using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace AppliedDataBindingSample { public partial class MultipleDataContextsForm : Form { public MultipleDataContextsForm() { InitializeComponent(); } private void MultipleDataContextsForm_Load(object sender, EventArgs e) { // TODO: This line of code loads data into the 'northwindDataSet.States' table. You can move, or remove it, as needed. this.statesTableAdapter.Fill(this.stateDataSet.States); } } }