Ejemplo n.º 1
0
 private void btnbul_Click(object sender, EventArgs e)
 {
     if (txtyazarno.Text.Length > 0)
     {
         clsYazarIslem y = new clsYazarIslem();
         y.zNo = txtyazarno.Text;
         y.bul();
         txtad.Text           = y.zAd;
         txtotobiyografi.Text = y.zOtobiyografi;
         txtsoyad.Text        = y.zSoyad;
         txtyazarno.Text      = y.zNo;
         MessageBox.Show(y.zDgr);
     }
     else
     {
         MessageBox.Show("Yazar Nosunu Giriniz");
     }
 }