예제 #1
0
 private void btn_giris_Click(object sender, EventArgs e)
 {
     if (txt_kullanici.Text.Trim() == "" && txt_sifre.Text.Trim() == "")
     {
         MessageBox.Show("Kullanici adi veya sifre alani boş");
     }
     else
     {
         try
         {
             baseForm form2 = new baseForm(txt_kullanici.Text);
             form2.Visible = true;
             this.Hide();
         }
         catch (Exception z)
         {
             MessageBox.Show(z.ToString());
         }
     }
 }
 public DosyaIslemleri(baseForm frm, string kullaniciadi)
 {
     this.frm          = frm;
     this.kullaniciadi = kullaniciadi;
 }
예제 #3
0
 public labels(Sol sl, DosyaIslemleri io, baseForm frm)
 {
     this.sl  = sl;
     this.io  = io;
     this.frm = frm;
 }