private void UserList_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'workOrdersDataSet.users' table. You can move, or remove it, as needed.
this.usersTableAdapter.Fill(this.workOrdersDataSet.users);
}
別のフォームで変更が加えられた場合、データを再ロードするにはどうすればよいですか? (できれば [更新] ボタンを使用せずに自動的に)?
私は WinForms を使用しており、バックエンドは Access 2007 です。
データはデザイナーを使用してデータグリッドにバインドされます