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 TITOVVIACHESLAVPODRESHETNIKOVAJULIASTUDENTI { public partial class Form2 : Form { public Form2() { InitializeComponent(); } private void specialinostiBindingNavigatorSaveItem_Click(object sender, EventArgs e) { this.Validate(); this.specialinostiBindingSource.EndEdit(); this.tableAdapterManager.UpdateAll(this.tITOVPODRECHETNIKOVADataSet); } private void Form2_Load(object sender, EventArgs e) { // TODO: данная строка кода позволяет загрузить данные в таблицу "tITOVPODRECHETNIKOVADataSet.Specialinosti". При необходимости она может быть перемещена или удалена. this.specialinostiTableAdapter.Fill(this.tITOVPODRECHETNIKOVADataSet.Specialinosti); } } }