private void toolStripButton1_Click(object sender, EventArgs e) { anasayfa a = new anasayfa(); a.Show(); this.Hide(); }
private void btnGiris_Click(object sender, EventArgs e) { baglanti = new OleDbConnection("Provider=Microsoft.ACE.Oledb.12.0;Data Source= " + Application.StartupPath + "\\database.accdb"); baglanti.Open(); komut = new OleDbCommand("select count(*) from root where rkuladi='" + txtGKuladi.Text + "' and rkulsifre='" + txtGSifre.Text + "'", baglanti); if (komut.ExecuteScalar().ToString() != "0") { kuladi = txtGKuladi.Text; sifre = txtGSifre.Text; this.Hide(); root root = new root(); root.Show(); } else { komut = new OleDbCommand("select count(*) from kullanici where kkuladi='" + txtGKuladi.Text + "' and ksifre='" + txtGSifre.Text + "'", baglanti); if (komut.ExecuteScalar().ToString() != "0") { kuladi = txtGKuladi.Text; sifre = txtGSifre.Text; this.Hide(); anasayfa anasayfa = new anasayfa(); anasayfa.Show(); } else { MessageBox.Show("Giriş bilgileriniz hatalı!", "Hata", MessageBoxButtons.OK, MessageBoxIcon.Error); } } if (checkHatirla.Checked) { kutuphaneotomasyon.Properties.Settings.Default.kuladi = txtGKuladi.Text; kutuphaneotomasyon.Properties.Settings.Default.sifre = txtGSifre.Text; kutuphaneotomasyon.Properties.Settings.Default.Save(); } else if (!checkHatirla.Checked) { kutuphaneotomasyon.Properties.Settings.Default.kuladi = ""; kutuphaneotomasyon.Properties.Settings.Default.sifre = ""; kutuphaneotomasyon.Properties.Settings.Default.Save(); } baglanti.Close(); }