private void ekleBtn_Click(object sender, EventArgs e) { textBox1.Text = textBox1.Text.Trim(); textBox2.Text = textBox2.Text.Trim(); textBox3.Text = textBox3.Text.Trim(); if (textBox1.Text.Length == 9) { if (textBox2.Text.Trim() == "" || textBox3.Text.Trim() == "") { MessageBox.Show("Lütfen isim ve soyisim giriniz"); } else { y_ac = sinif_cek2.ekle(Convert.ToInt32(textBox1.Text), textBox2.Text, textBox3.Text); if (y_ac == 1) { kayit_ekle frm = new kayit_ekle(); frm.Show(); this.Hide(); } } } else { MessageBox.Show("Lütfen öğrenci numarasını eksiksiz giriniz."); } }
private void kayıtEkleToolStripMenuItem_Click(object sender, EventArgs e) { kontrol = Microsoft.VisualBasic.Interaction.InputBox("Şifrenizi Giriniz", "Yetkili Girişi", "", 200, 200); yetki = Sinif_cek4.kontrol_et(Convert.ToInt32(giris.ogr), kontrol); if (yetki == 1) { kayit_ekle frm = new kayit_ekle(); frm.Show(); this.Hide(); } }