private void button8_Click(object sender, EventArgs e) { BolumEkran.BolumNo = Convert.ToInt32(textBox5.Text); OgrIslemleri ogrislemleri = new OgrIslemleri(); ogrislemleri.Show(); }
private void button8_Click(object sender, EventArgs e) { try { BolumEkran.BolumNo = Convert.ToInt32(textBox5.Text); //bolum no textboxdakiyle aynı olduğunda OgrIslemleri ogrislemleri = new OgrIslemleri(); ogrislemleri.Show(); //ogrenci eklemek için ogrenci ekleme formu açılır if (textBox5 == null) { throw new Exception(); } } catch (Exception) { MessageBox.Show("Bolum numarası girin"); } }