private void btnLogin_Click(object sender, EventArgs e) { string userName = txbUserName.Text; string passWord = txbPassword.Text; if (Login(userName, passWord)) { FormQuanLy f = new FormQuanLy(); Hide(); EnableLogin(); f.ShowDialog(); Show(); } else { lbW.Text = ""; lbCheckLogin.Text = "<\\ Sai tên tài khoản hoặc mật khẩu >"; } }