private void button1_Click(object sender, EventArgs e)
        {
            string kaynak = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=disciotomasyonu.mdb";
            OleDbConnection baglanti = new OleDbConnection(kaynak);
            DialogResult Sor = MessageBox.Show("Yeni Kayıt Eklensin Mi ?", "Kayıt Ekle", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2);
            OleDbCommand cmd;
            if (Sor == DialogResult.Yes)
            {
                try
                {
                     cmd= new OleDbCommand("INSERT INTO hasta_kayit(TCKNO,ADI,SOYADI,DOGUM_YERI,DOGUM_TARI,BABA_ADI,ANNE_ADI,MESLEK,KAN_GRUBU,EV_TELEFON,CEP_TELEFO,E_MAIL,ANLASMALI,ANLASMALI_K,MEDENI_DUR,CINSIYET,KAYIT_TARIHI) VALUES ('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','" + textBox4.Text + "','" + maskedTextBox1.Text + "','" + textBox5.Text + "','" + textBox6.Text + "','" + textBox7.Text + "','" + textBox8.Text + "','" + textBox9.Text + "','" + textBox10.Text + "','" + textBox11.Text + "','" + textBox12.Text + "','" + textBox13.Text + "','" + comboBox1.Text + "','" + comboBox2.Text + "','" +dateTimePicker2.Text + "')", baglanti);
                    baglanti.Open();
                    cmd.ExecuteNonQuery();
                    baglanti.Close();
                    int id = ID_Bul(textBox1.Text);
                    if (id != -1)
                    {

                        Form8 frm = new Form8(id);
                        frm.Show();
                        this.Hide();

                        //MessageBox.Show("Kayıt tamamlandı...");
                        //textBox1.Text = "";
                        //textBox2.Text = "";
                        //textBox3.Text = "";
                        //textBox4.Text = "";
                        //textBox5.Text = "";
                        //textBox6.Text = "";
                        //textBox7.Text = "";
                        //textBox8.Text = "";
                        //textBox9.Text = "";
                        //textBox10.Text = "";
                        //textBox11.Text = "";
                        //textBox12.Text = "";
                        //textBox13.Text = "";
                        //comboBox1.Text = "";
                        //comboBox2.Text = "";

                    }

                }
                catch (Exception ex)
                {
                    MessageBox.Show("!!...HATA...!!" + "\n" + ex.Message);
                }

            }
        }
 private void button5_Click(object sender, EventArgs e)
 {
     Form8 frm8 = new Form8();
     frm8.Show();
 }
 private void button5_Click(object sender, EventArgs e)
 {
     this.Hide();
     Form8 frm8 = new Form8(21);
     frm8.Show();
 }