Example #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            string       tc     = textBox1.Text;
            string       barkod = textBox6.Text;
            DateTime     dt2    = Convert.ToDateTime(dateTimePicker2.Value.ToString());
            String       alıs   = dt2.ToString("dd.MM.yyyy");
            DialogResult sonuc;

            sonuc = MessageBox.Show("Kitap Emanet Edilsin mi?", "Uyarı", MessageBoxButtons.YesNo);
            if (sonuc == DialogResult.Yes)
            {
                string           Sorgu        = string.Format("INSERT INTO KitapTeslimBilgisi(TCKimlik,Barkod,AlisTarihi) VALUES ('{0}','{1}','{2}')", tc, barkod, alıs);
                OleDbConnection  YeniBaglanti = new OleDbConnection(Baglanti);
                OleDbDataAdapter YeniVeriAl   = new OleDbDataAdapter(Sorgu, YeniBaglanti);
                DataTable        YeniTablo    = new DataTable();
                YeniVeriAl.Fill(YeniTablo);
                DataSet YeniAl = new DataSet();
                YeniAl.Tables.Add(YeniTablo);
                MessageBox.Show("Kitap Başarıyla Emanet Edilmiştir..");
                EmanetKitap ek = new EmanetKitap();
                this.Close();
                ek.Show();
            }
            else if (sonuc == DialogResult.No)
            {
                this.Show();
            }
        }
Example #2
0
        private void button4_Click(object sender, EventArgs e)
        {
            EmanetKitap ek = new EmanetKitap();

            this.Visible = false;
            ek.Show();
        }