コード例 #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            string FIO     = textBox1.Text;
            string Age     = numericUpDown1.Value.ToString();
            string Sex     = comboBox1.SelectedItem.ToString();
            string Adress  = textBox9.Text;
            string Phone   = textBox5.Text;
            string Pasport = textBox3.Text;
            string IdPos   = textBox4.Text;

            // MessageBox.Show(Age, Sex);
            AddEmployees add = new AddEmployees();

            try
            {
                conn.ConnectDB();
                string sql = "insert into employees(FIO, Age, Sex, Adress, Mobil_phone, Pasport, id_position) values('" + FIO + "','" + Age + "', '" + Sex + "', '" + Adress + "',  '" + Phone + "','" + Pasport + "', '" + IdPos + "');";

                conn.ModifyQuery(sql);
                // MessageBox.Show("Вы добавили сотрудника");
                // this.Hide();
                // add.Show();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
        }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: Zakaraya/ClientHotelApp
 private void button4_Click(object sender, EventArgs e)
 {
     try
     {
         Form AddEm = new AddEmployees();
         AddEm.Show();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString());
     }
 }