Exemple #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            bool kullanici = data.girisYap(textBox1.Text, textBox2.Text);

            if (kullanici == true)
            {
                anamenu a = new anamenu();
                a.ID   = data.kullaniciID(textBox1.Text, textBox2.Text);
                a.geri = this;
                a.Show();
                this.Hide();
            }
            else
            {
                MessageBox.Show("Hatalı kullanıcı adı veya şifre, lütfen tekrar deneyiniz.", "Uyarı!");
            }
        }