private void btnIptalEt_Click(object sender, EventArgs e) { frmBiletAl frm = new frmBiletAl(); this.Close(); frm.ShowDialog(); }
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"); } }
private void btnBiletSatis_Click(object sender, EventArgs e) { frmBiletAl frm = new frmBiletAl(); frm.Show(); }