private void logo_Click(object sender, EventArgs e) { frm_userMain userMain = new frm_userMain(); userMain.ShowDialog(); timerClose.Start(); }
private void BtnDangNhap_Click(object sender, EventArgs e) { eTaiKhoan taikhoan = tk.GetAllList(); if (txtTenDangNhap.Text == taikhoan.taiKhoan && txtMatKhau.Text == taikhoan.matKhau) { frm_userMain userMain = new frm_userMain(); userMain.ShowDialog(); timerClose.Start(); } else { lblThongBao.Text = "Tài khoản hoặc mật khẩu không chính xác."; } }