Example #1
0
        private void button2_Click(object sender, EventArgs e)
        {
            hesapbilgileri frm = new hesapbilgileri();

            frm.Show();
            this.Hide();
        }
Example #2
0
 private void button2_Click(object sender, EventArgs e)
 {
     getir();
     if (textBox1.Text == o)
     {
         if (textBox2.Text == x)
         {
             hesapbilgileri s = new hesapbilgileri();
             s.Show();
             textBox1.Clear();
             textBox2.Clear();
             this.Hide();
         }
         if (textBox1.Text == o)
         {
             MessageBox.Show("Müşteri Numaranız veya Şifreniz Yanlış");
             textBox1.Clear();
             textBox2.Clear();
         }
     }
     else
     {
         MessageBox.Show("Müşteri Numaranız veya Şifreniz Yanlış");
         textBox1.Clear();
         textBox2.Clear();
     }
 }