private void button2_Click(object sender, EventArgs e)
        {
            SatisMenu satis = new SatisMenu();

            satis.Show();
            this.Hide();
        }
        private void BtnGiris_Click(object sender, EventArgs e)
        {
            baglan.Open();
            OleDbCommand    komut = new OleDbCommand("Select *from KasiyerBilgileri where KasaNo='" + txtKasano.Text + "'and KasiyerAdi='" + txtKullaniciAdi.Text + "'and KasiyerSifre='" + txtParola.Text + "'", baglan);
            OleDbDataReader dr    = komut.ExecuteReader();


            if (dr.Read() && txtKontrol.Text == lblKontrol.Text)
            {
                SatisMenu satis = new SatisMenu();
                this.Hide();
                satis.Show();
                satis.SatisKasaNo.Text = txtKasano.Text;
            }

            else
            {
                GirisHakki--;
                yenile();
                MessageBox.Show("               Bilgilerde Hata Var Tekrar Deneyiniz!!!!       \n\n\n                         Kalan Hakkınız   :  " + GirisHakki.ToString() + "", "Uyarı Mesajı", MessageBoxButtons.OK, MessageBoxIcon.Warning);

                txtKasano.Text       = "";
                txtKontrol.Text      = "";
                txtKullaniciAdi.Text = "";
                txtParola.Text       = "";
                if (GirisHakki == 0)
                {
                    MessageBox.Show("Bilgiler Hatalı Olduğu için Uygulama Kapanacak", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    Application.Exit();
                }
            }


            baglan.Close();
            if (txtKasano.Text != "")
            {
                baglan.Open();
                komut.CommandText = "update giris set giris='" + txtKasano.Text.ToString() + "'where id='" + Convert.ToInt16(0).ToString() + "'";
                komut.ExecuteNonQuery();
                baglan.Close();
            }
        }