private void toolStripButton3_Click(object sender, EventArgs e) //Открытие формы добавления в таблицу Комплектующие { ADDForm ap = new ADDForm("Add"); ap.ShowDialog(); fillProducts(); }
private void toolStripButton4_Click(object sender, EventArgs e) //Открытие формы изменения в таблицу Комплектующие { ADDForm ap = new ADDForm(dataGridView1.CurrentRow.Cells[0].Value.ToString(), dataGridView1.CurrentRow.Cells[1].Value.ToString(), dataGridView1.CurrentRow.Cells[2].Value.ToString(), dataGridView1.CurrentRow.Cells[3].Value.ToString(), dataGridView1.CurrentRow.Cells[4].Value.ToString(), dataGridView1.CurrentRow.Cells[5].Value.ToString(), "Edit"); ap.ShowDialog(); fillProducts(); }