Here's my MSacces:

My error : I can sign up and sign in but when I start the program again I can't sign in with same variable.
For example : I signed up with admin 123 and then I log in with admin 123. I then close the program and open it again, I can't sign in with admin 123.
Form 1 starts from here:
OleDbConnection bağlanti = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=üye.accdb");
private void button2_Click(object sender, EventArgs e)
{
bağlanti.Open();//connection open
OleDbCommand komut = new OleDbCommand("select * From üyeler", bağlanti);
OleDbDataReader okuyucu = komut.ExecuteReader();//reader
while (okuyucu.Read())reader.read
{
if (textBox1.Text.ToString() == okuyucu["kullaniciadi"].ToString())//read[accountname]
{
if (textBox2.Text.ToString() == okuyucu["kullanicisifre"].ToString())//read[password]
{
MessageBox.Show("tebrikler giriş başarılı");//cong sign in sucseed
Form2 frm = new Form2();//going new form
frm.Show();
this.Hide();
}
}
else
{
MessageBox.Show("Bu kullanıcı adı şifresi yanlıştır");
}
}
bağlanti.Close();
}
private void uyeol_Click(object sender, EventArgs e)
{
Form3 frm = new Form3();//sign up button
frm.Show();
this.Hide();
}
}
}
and its form 3
OleDbDataAdapter da;
OleDbCommand cmd;
DataSet ds;
OleDbConnection bağlanti = new OleDbConnection("Provider = Microsoft.ACE.OLEDB.12.0; Data Source =üye.accdb");
void griddoldur()
{
bağlanti = new OleDbConnection("Provider=Microsoft.ACE.Oledb.12.0;Data Source=okul.accdb");//con
da = new OleDbDataAdapter("select *from ogrenci", bağlanti);
ds = new DataSet();
}
private void Form1_Load(object sender, EventArgs e)
{
griddoldur();
}
public void button1_Click(object sender, EventArgs e)
{
cmd = new OleDbCommand();
bağlanti.Open();//connection open
cmd.Connection = bağlanti;//cmd = new OleDbCommand();
cmd.CommandText="insert into üyeler (kullaniciadi,kullanicisifre,tel,ad) values ('"+textBox1.Text+"','"+textBox2.Text+"','"+textBox3.Text+"','"+textBox4.Text+"')";//(account name + textbox1)(passw+ textbox2)(phonenumber+textbox3)(Name + textbox 4)
cmd.ExecuteNonQuery();,//cmd = new OleDbCommand();
bağlanti.Close();//connection close
Form1 frm = new Form1();//going log in form
frm.Show();
this.Hide();
}
}