private void btnDangKi_Click(object sender, EventArgs e) { if (isDienDuThongTin() && isMatKhauNhapLaiGiongMatKhau()) { if (chuyenDuLieuTuFormVaoDB() == true) { MessageBox.Show("Tạo thành công !", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); FormLoaiDangNhap fLoaiDangNhap = new FormLoaiDangNhap(); this.Hide(); fLoaiDangNhap.ShowDialog(); this.Close(); } else { MessageBox.Show("Tài khoản đã tồn tại!!!!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } else { if (!isMatKhauNhapLaiGiongMatKhau()) { MessageBox.Show("VUI LÒNG NHẬP LẠI ĐÚNG MẬT KHẨU!!!!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { MessageBox.Show("Vui lòng nhập đầy đủ thông tin!!!!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } }
private void btnQuayLai_Click(object sender, EventArgs e) { FormLoaiDangNhap fLoaiDangNhap = new FormLoaiDangNhap(); this.Hide(); fLoaiDangNhap.ShowDialog(); this.Close(); }
private void btDangXuat_Click(object sender, EventArgs e) { if (MessageBox.Show("Bạn có muốn đăng xuất hay không ?", "Thông báo", MessageBoxButtons.YesNo) == DialogResult.Yes) { FormLoaiDangNhap fLoaiDangNhap = new FormLoaiDangNhap(); this.Hide(); fLoaiDangNhap.ShowDialog(); this.Close(); } }