private void button5_Click(object sender, EventArgs e)
        {// geri
            İŞLEMSEÇ islem = new İŞLEMSEÇ();

            islem.Show();
            this.Hide();
        }
예제 #2
0
        private void button1_Click(object sender, EventArgs e)
        {//EVET
            İŞLEMSEÇ sç = new İŞLEMSEÇ();

            this.Hide();
            ctx.Hide();//kayıtlar formunu kapatıyoruz
            sç.Show();
        }
예제 #3
0
 private void button1_Click(object sender, EventArgs e)
 {
     if (textBox1.Text == "nuran" && textBox2.Text == "123nuran*" || textBox1.Text == "sultan" && textBox2.Text == "571610")
     {
         İŞLEMSEÇ frm = new İŞLEMSEÇ();
         frm.Show();
         this.Hide();
     }
     else
     {
         MessageBox.Show("kullanıcı adı veya şifre yanlış girildi.");
     }
 }