コード例 #1
0
 private void BtDangNhap_Click(object sender, EventArgs e)
 {
     try
     {
         string   tenDangNhap = this.txtTaiKhoan.Text;
         string   matKhau     = this.txtMatKhau.Text;
         TaiKhoan taiKhoan    = TaiKhoanDAO.Instance.layTaiKhoan(tenDangNhap);
         if (matKhau == taiKhoan.MatKhau)
         {
             MessageBox.Show("Đăng nhập thành công!", "Đăng Nhập", MessageBoxButtons.OK, MessageBoxIcon.Information);
             //Mở Form giao diện
             if (taiKhoan.LoaiTaiKhoan == 0)
             {
                 KhachHang kh = KhachHangDAO.Instance.layKH(taiKhoan.SoDienThoai);
                 fDatVeXe  f  = new fDatVeXe(kh);
                 f.Show();
                 this.Dispose(false);
             }
             else if (taiKhoan.LoaiTaiKhoan == 1)
             {
                 fQuanLyChuyenDi f = new fQuanLyChuyenDi();
                 f.Show();
                 this.Dispose(false);
             }
         }
         else
         {
             MessageBox.Show("Đăng nhập không thành công! Sai tên đăng nhập hoặc mật khẩu", "Đăng Nhập", MessageBoxButtons.OK, MessageBoxIcon.Error);
         }
     }
     catch (Exception)
     {
         MessageBox.Show("Đăng nhập không thành công! Sai tên đăng nhập hoặc mật khẩu", "Đăng Nhập", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
コード例 #2
0
        private void BtChuyenDi_Click(object sender, EventArgs e)
        {
            fQuanLyChuyenDi f = new fQuanLyChuyenDi();

            f.Show();
            this.Dispose(false);
        }