Example #1
0
        private void button2_Click(object sender, EventArgs e)
        {
            giris giris = new giris();

            giris.Show();
            this.Hide();
        }
        private void girişToolStripMenuItem_Click(object sender, EventArgs e)
        {
            giris giris = new giris();

            giris.Show();
            this.Hide();
        }
 private void button2_Click(object sender, EventArgs e)
 {
     if (hata == 0)
     {
         control();
     }
     else if (hata == 1)
     {
         con.Open();
         SqlCommand cmd = new SqlCommand("insert into Kullanici(k_tc,Ad,Soyad,Sifre,Cinsiyet,DogumTarihi,Telefon,Adres,e_mail) values ('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox4.Text + "','" + textBox3.Text + "','" + comboBox1.Text + "','" + textBox7.Text + "','" + textBox6.Text + "','" + textBox8.Text + "','" + textBox5.Text + "')", con);
         cmd.ExecuteNonQuery();
         con.Close();
         MessageBox.Show(" Kayıt Yapıldı");
         giris giris = new giris();
         giris.Show();
         this.Hide();
     }
 }
Example #4
0
 private void button2_Click(object sender, EventArgs e)
 {
     if (hata == 0)
     {
         kontrol();
     }
     else if (hata == 1)
     {
         con.Open();
         SqlCommand cmd = new SqlCommand("insert into Diyetisyen(d_tc,Ad,Soyad,Sifre,Unvan,Telefon,e_mail,UniversiteAdi,baslangictarihi,MezuniyetTarihi) values ('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox4.Text + "','" + textBox3.Text + "','" + textBox8.Text + "','" + textBox7.Text + "','" + textBox6.Text + "','" + textBox9.Text + "','" + textBox5.Text + "','" + textBox10.Text + "')", con);
         cmd.ExecuteNonQuery();
         con.Close();
         MessageBox.Show(" Kayıt Yapıldı");
         giris giris = new giris();
         giris.Show();
         this.Hide();
     }
 }