private void button1_Click(object sender, EventArgs e) { try { using (SQLiteConnection con = new SQLiteConnection(connectionstring)) { cmd = new SQLiteCommand(); cmd.CommandText = "INSERT INTO tblMusteri (MusteriAdi,MusteriSoyad,MusteriTel,GirdigiFilmAdi,SalonNo,SeansSaat,AlinanTutar) VALUES ('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','" + comboBox1.Text + "','" + textBox4.Text + "','" + comboBox2.Text + "','" + label16.Text + "')"; cmd.Connection = con; con.Open(); int i = cmd.ExecuteNonQuery(); if (i == 1) { MessageBox.Show("Satın alma işlemi başarıyla gerçekleştirildi", "Satın alma işlemi"); Kullanıcı_Girişi nesne = new Kullanıcı_Girişi(); nesne.Show(); this.Hide(); } else { MessageBox.Show("Satın alma işlemi başarısız oldu", "Satın alma işlemi"); } con.Close(); cmd.Dispose(); } } catch (Exception ex) { MessageBox.Show(ex.Message, "Bir hata ile karşılaşıldı"); } }
private void btn_Geri_Click(object sender, EventArgs e) { Kullanıcı_Girişi nesne = new Kullanıcı_Girişi(); nesne.Show(); this.Hide(); }
private void button1_Click(object sender, EventArgs e) { try { using (SQLiteConnection con = new SQLiteConnection(connectionstring)) { cmd = new SQLiteCommand(); cmd.CommandText = "INSERT INTO tblKullaniciGirisi (YetkiID,KullaniciAdi,Sifre) VALUES ('2','" + textBox1.Text + "','" + textBox2.Text + "')"; cmd.Connection = con; con.Open(); int i = cmd.ExecuteNonQuery(); if (i == 1) { MessageBox.Show("Kayıt başarılı..", "Yeni üye kaydı"); Kullanıcı_Girişi nesne = new Kullanıcı_Girişi(); nesne.Show(); this.Hide(); } else { MessageBox.Show("Kayıt Başarısız Oldu", "Yeni üye kaydı"); } con.Close(); cmd.Dispose(); } } catch (Exception ex) { MessageBox.Show(ex.Message, "Bir Hata ile Karşılaşıldı"); } }