private void button1_Click(object sender, EventArgs e)
        {
            string    KullaniciAdi   = system.GetDataCell("select KullaniciAdi from Kullanicilar where KullaniciAdi='" + txtKullaniciAdi.Text + "' and KullaniciSifre='" + txtSifre.Text + "'");
            string    KullaniciId    = system.GetDataCell("select KullaniciId from Kullanicilar where KullaniciAdi='" + txtKullaniciAdi.Text + "' and KullaniciSifre='" + txtSifre.Text + "'");
            DataTable dtKullanicilar = system.GetDataTable("select * from Kullanicilar");

            if (dtKullanicilar.Rows.Count == 0)
            {
                MessageBox.Show("Sistemde kayıtlı Kullanıcı yok! Yeni Kullanıcı uygulamayı ekleyip tekrar başlatın!", "Hata!");
                YeniKullanici YeniKullanici = new YeniKullanici();
                YavruForm(YeniKullanici);
                groupBox1.Visible = false;
            }
            else
            {
                if (KullaniciAdi == txtKullaniciAdi.Text)
                {
                    system.cmd("update  Kullanicilar set durum='1' where KullaniciId=" + KullaniciId + "");
                    menuStrip1.Enabled = true;
                    groupBox1.Visible  = false;
                }
                else
                {
                    MessageBox.Show("Kullanıcı Adı yada şifre hatalı!", "Hata!");
                }
            }
        }
        private void button1_Click(object sender, EventArgs e)
        {
            string KullaniciAdi= system.GetDataCell("select KullaniciAdi from Kullanicilar where KullaniciAdi='" + txtKullaniciAdi.Text + "' and KullaniciSifre='" + txtSifre.Text + "'");
            string KullaniciId= system.GetDataCell("select KullaniciId from Kullanicilar where KullaniciAdi='" + txtKullaniciAdi.Text + "' and KullaniciSifre='" + txtSifre.Text + "'");
            DataTable dtKullanicilar = system.GetDataTable("select * from Kullanicilar");
            if (dtKullanicilar.Rows.Count == 0)
            {
                MessageBox.Show("Sistemde kayıtlı Kullanıcı yok! Yeni Kullanıcı uygulamayı ekleyip tekrar başlatın!","Hata!");
                YeniKullanici YeniKullanici = new YeniKullanici();
                YavruForm(YeniKullanici);
                groupBox1.Visible = false;

            }
            else
            {
                if (KullaniciAdi == txtKullaniciAdi.Text)
                {
                    system.cmd("update  Kullanicilar set durum='1' where KullaniciId="+KullaniciId+"");
                    menuStrip1.Enabled = true;
                    groupBox1.Visible = false;
                }
                else MessageBox.Show("Kullanıcı Adı yada şifre hatalı!","Hata!");

            }
        }