Ejemplo n.º 1
0
        private void btnDangNhap_Click(object sender, EventArgs e)
        {
            DAL.NguoiDung_Controller nd = new DAL.NguoiDung_Controller();
            int check = nd.checkLogin(txtMaNV.Text, txtMatKhau.Text);

            if (check == 1)
            {
                DAL.NguoiDung_Controller.MaNV    = txtMaNV.Text;
                DAL.NguoiDung_Controller.matkhau = txtMatKhau.Text;
                this.Hide();
                GUI.frmMain main = new frmMain();
                main.Show();
            }
            else
            {
                MessageBox.Show("Thông tin tài khoản hoặc mật khẩu không chính xác", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }