private void btn_TC_Click(object sender, EventArgs e) { Form_CaNhanCuaSV f = new Form_CaNhanCuaSV(); f.id_TV = id_TV; f.MSVKT = MSVKT; this.Hide(); f.Show(); }
private void tx_Password_KeyUp(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { if (TrangThai == 1) { string username = tx_user.Text; string password = tx_Password.Text; if (Login(username, password)) { List <Account> list = AccountDAO.GetAccount(username, password); Account TK = list[0] as Account; Form_Main frm = new Form_Main(); frm.Id_TaiKhoan = TK.id; this.Hide(); frm.ShowDialog(); } else { MessageBox.Show("Bạn đã sai tên đăng nhập hoặc mật khẩu!"); } } else { string username = tx_user.Text; string password = tx_Password.Text; if (ThanhVienDAO.Login_Check(username, password)) { List <ThanhVien> list = ThanhVienDAO.GetAccount(username, password); ThanhVien TK = list[0] as ThanhVien; Form_CaNhanCuaSV f = new Form_CaNhanCuaSV(); f.MSVKT = TK.MaSVKT; this.Hide(); f.Show(); } else { MessageBox.Show("Bạn đã sai tên đăng nhập hoặc mật khẩu!"); } } } }