void kayitEkleme()
        {
            yetkiDoldurma();

            if (sPoz == "Diğer")
            {
                sPoz = txtPozD.Text;
            }

            AnaForm ana   = new AnaForm();
            string  islem = "Yeni Görevli Kayıt, Görevli Ad - ID : " + sgAd + "-" + sgID;

            ana.LogKayit(islem);

            try
            {
                // aynı öğrenci numarasında kayıt yoksa
                if (db.grvKontrol(sgID) == true)
                {
                    db.grvKayit(sgID, sgAd, sgSoyad, sPoz, yKayGor, yPrjGor, yTopGor, yGorevGor, yUyeGor, yUyeKay, yGrvGor, yGrvKay, yRefGor, yRefKay, yProjeGor, yProjeD, yTumTopGor, yTopKay, yTumGorevGor, yGorevKay, txtGrvKulAd.Text.Trim(), txtGrvSif.Text.Trim());
                    MessageBox.Show("Kayıt Başarı ile Oluşturuldu");
                    temizle();
                }
                ////aynı öğrenci numarasında kayıt var ise
                else
                {
                    MessageBox.Show("Bu Kişi Daha önceden Kayıt olmuştur!", "Uyarı", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
            }
            catch (Exception hata)
            {
                MessageBox.Show(hata.Message);
            }
        }