//bool Login(string userName, string passWord); /*{ * return false; * }*/ private void btnLogin_Click(object sender, EventArgs e) { //string userName = txtUseName.Text; //string passWord = txtPass.Text; //if (Login(userName, passWord)) //{ fTableManager f = new fTableManager(); this.Hide(); f.ShowDialog(); this.Show(); //} //else //{ //MessageBox.Show("Sai tên đăng nhập hoặc mật khẩu!"); //} }
private void btnLogin_Click(object sender, EventArgs e) { string username = txtUserName.Text; string password = txtPassWord.Text; if (CheckLoginInfras.Instance.Login(username, password) == 1) { NHANVIEN nhanvienLogin = CheckLoginInfras.Instance.GetNhanVienByMaNV(username); fTableManager f = new fTableManager(nhanvienLogin); this.Hide(); f.ShowDialog(); this.Show(); } else { MessageBox.Show("Sai tên tài khoản hoặc mật khẩu", "Thông báo"); } }