using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Chistyakov_var10 { public partial class Form3 : Form { public Form3() { InitializeComponent(); } private void диагнозыBindingNavigatorSaveItem_Click(object sender, EventArgs e) { this.Validate(); this.диагнозыBindingSource.EndEdit(); this.tableAdapterManager.UpdateAll(this.iS32_Chistyakov10DataSet); } private void Form3_Load(object sender, EventArgs e) { // TODO: данная строка кода позволяет загрузить данные в таблицу "iS32_Chistyakov10DataSet.Диагнозы". При необходимости она может быть перемещена или удалена. this.диагнозыTableAdapter.Fill(this.iS32_Chistyakov10DataSet.Диагнозы); } } }