private void Form_KullaniciTanim_Load(object sender, EventArgs e)
        {
            IdeaV2WBS.IdeaV2 Serv = new IdeaV2WBS.IdeaV2();
            DataSet          ds   = Serv.IlListesi();

            lkuIl.Properties.DataSource           = ds.Tables[0];
            lkuUstKullanici.Properties.DataSource = Serv.UstKullaniciListesi().Tables[0];


            List <string> cinsiyetlist = new List <string>();

            cinsiyetlist.Add("Kadın");
            cinsiyetlist.Add("Erkek");
            lkuCinsiyet.Properties.DataSource = cinsiyetlist;

            lkuRol.Properties.DataSource = Serv.RolListesi(Guvenlik.RolId).Tables[0];

            /****/
            if (Guvenlik.RolId == 2)
            {
                lkuUstKullanici.ReadOnly  = true;
                lkuUstKullanici.EditValue = Guvenlik.KullaniciId;
            }
        }