private void button3_Click(object sender, EventArgs e)
        {
            int indx = dataGridView1.SelectedRows.Count;

            if (indx > 0)
            {
                int id = Convert.ToInt32(dataGridView1.SelectedRows[0].Cells[0].Value.ToString());

                ogrekle              = new ogr_ekle(Database.GetOgrenci(id));
                ogrekle.FormClosing += new FormClosingEventHandler(ogrenciEkleKapaniyor);
                ogrekle.ShowDialog();
            }

            else
            {
                MessageBox.Show("Güncellenecek öğrenciyi seçiniz.");
            }
        }
        private void ogrenciEkleKapaniyor(object sender, FormClosingEventArgs e)
        {
            populateTable();

            ogrekle = null;
        }
 private void button1_Click(object sender, EventArgs e)
 {
     ogrekle              = new ogr_ekle();
     ogrekle.FormClosing += new FormClosingEventHandler(ogrenciEkleKapaniyor);
     ogrekle.ShowDialog();
 }