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 Бархотные_брови { public partial class Form4 : Form { public Form4() { InitializeComponent(); } private void clientServiceBindingNavigatorSaveItem_Click(object sender, EventArgs e) { this.Validate(); this.clientServiceBindingSource.EndEdit(); this.tableAdapterManager.UpdateAll(this.dB_Кузьменко_V2DataSet); } private void Form4_Load(object sender, EventArgs e) { // TODO: данная строка кода позволяет загрузить данные в таблицу "dB_Кузьменко_V2DataSet.ClientService". При необходимости она может быть перемещена или удалена. this.clientServiceTableAdapter.Fill(this.dB_Кузьменко_V2DataSet.ClientService); } private void button1_Click(object sender, EventArgs e) { Form1 form4 = new Form1(); form4.Show(); this.Hide(); } } }