private void btnGiris_Click(object sender, EventArgs e) { string kullaniciAdi = tbKullaniciAdi.Text; string kullaniciSifresi = tbKullaniciSifresi.Text; Personel kayit = (from x in db.Personel where x.Kullaniciadi == kullaniciAdi.ToString() && x.Sifre == kullaniciSifresi select x).FirstOrDefault(); try { if (kayit.Kullaniciadi == kullaniciAdi.ToString() && kayit.Sifre == kullaniciSifresi) { isci isciform = new isci(); isciform.Show(); isciform.lbKullaniciId.Text = kayit.Id.ToString(); Aciklama acik = new Aciklama(); acik.lbkisiid.Text = kayit.Id.ToString(); } else if (kullaniciAdi == "patron" && kullaniciSifresi == "123456") { kişilistesi kisiler = new kişilistesi(); kisiler.Show(); } } catch (Exception) { MessageBox.Show("Kullanici Adi veya Şifre Hatalı"); } }
private void label4_Click(object sender, EventArgs e) { Aciklama acik = new Aciklama(); acik.Show(); acik.lbkisiid.Text = lbKullaniciId.Text; }