private void btAdd_Click(object sender, EventArgs e) { string factQuery; FormEmployees fe = new FormEmployees(); factQuery = "(`surname`, `name`, `patronimyc`, `phone_number`,`position_position`) VALUES('" + textBox1.Text + "', '" + textBox2.Text + "', '" + textBox3.Text + "', '" + textBox4.Text + "', '" + cbPosition.Text + "');"; db.Add("employees", factQuery, fe.dataGridView1); Hide(); }
private void btEmployees_Click(object sender, EventArgs e) { FormEmployees fe = new FormEmployees(); fe.ShowDialog(); }