示例#1
0
        private void button2_Click(object sender, EventArgs e)
        {
            OgrenciPaneli op = new OgrenciPaneli();

            op.Show();
            this.Hide();
        }
示例#2
0
        private void button1_Click(object sender, EventArgs e)
        {
            if (textBox1.Text == "" && textBox2.Text == "")
            {
                MessageBox.Show("Lütfen öğrenci numaranızı ve şifrenizi giriniz.");
            }
            else if (textBox1.Text == "")
            {
                MessageBox.Show("Lütfen öğrenci numaranızı giriniz.");
            }
            else if (textBox2.Text == "")
            {
                MessageBox.Show("Lütfen şifrenizi giriniz.");
            }
            else
            {
                try
                {
                    MySqlConnection connection = new MySqlConnection("datasource=localhost;port=3306;username=root;password=);
                    int i = 0;
                    connection.Open();
                    MySqlCommand cmd = connection.CreateCommand();
                    cmd.CommandType = CommandType.Text;
                    cmd.CommandText = "select * from ders_kayit_sistemi.ogrenci where ogrenci_no='" + textBox1.Text + "' and ogrenci_sifre='" + textBox2.Text + "'";
                    cmd.ExecuteNonQuery();
                    DataTable dt = new DataTable();
                    MySqlDataAdapter adapter = new MySqlDataAdapter(cmd);
                    adapter.Fill(dt);
                    i = int.Parse(dt.Rows.Count.ToString());

                    if (i == 0)
                    {
                        MessageBox.Show("Öğrenci numarası ya da şifre geçersizdir.");
                    }
                    else
                    {
                        ogrenci_no = textBox1.Text;
                        OgrenciPaneli op = new OgrenciPaneli();
                        op.Show();
                        this.Hide();
                    }
                }
                catch (Exception ex)
                {
                    MessageBox.Show("Bir hata ile karşılaşıldı: \n" + ex.Message);
                }
            }
        }