Exemplo n.º 1
0
        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();
        }
Exemplo n.º 2
0
        private void btEmployees_Click(object sender, EventArgs e)
        {
            FormEmployees fe = new FormEmployees();

            fe.ShowDialog();
        }