Example #1
0
        private void btnIptalEt_Click(object sender, EventArgs e)
        {
            frmBiletAl frm = new frmBiletAl();

            this.Close();
            frm.ShowDialog();
        }
Example #2
0
 private void btnGiris_Click(object sender, EventArgs e)
 {
     if (txtMail.Text.Trim() != "" && txtSifre.Text.Trim() != "")
     {
         cKullanicilar k     = new cKullanicilar();
         bool          sonuc = k.KullaniciKontrol(txtMail.Text, txtSifre.Text);
         if (sonuc)
         {
             MessageBox.Show("Mail veya Şifre Yanlış");
         }
         else
         {
             frmBiletAl frm = new frmBiletAl();
             k.KullaniciNoGetir(txtMail.Text, frm.txtkullanici);
             this.Close();
             frm.Show();
         }
     }
     else
     {
         MessageBox.Show("Mail ve Şifre Alanı Boş Bırakılamaz");
     }
 }
Example #3
0
        private void btnBiletSatis_Click(object sender, EventArgs e)
        {
            frmBiletAl frm = new frmBiletAl();

            frm.Show();
        }