private void button1_Click_1(object sender, EventArgs e) { VeriTabani vt = new VeriTabani(); int rol = vt.KullanıcıGiris(textKullaniciAdi.Text, textSifre.Text); //MessageBox.Show(rol.ToString()); if (rol == -1) { MessageBox.Show("Şifre Veya Parola Yanlış", "UYARI", MessageBoxButtons.OK, MessageBoxIcon.Error); //textKullaniciAdi.Text = ""; textSifre.Text = ""; textKullaniciAdi.Focus(); } else if (rol == 0 || rol == 1) { AdminAnaSayfa form = new AdminAnaSayfa(); int GElenID = vt.CalısanIDAL(textKullaniciAdi.Text, textSifre.Text); form.CalısanID = GElenID; form.Rol = rol; form.Show(); this.Hide(); } else { //çalışan ana sayfası açılacak } }