private void button1_Click(object sender, EventArgs e) { if (textBox1.Text == "" || textBox2.Text == "") { MessageBox.Show("Vui lòng điền đầy đủ thông tin", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } else { TAIKHOAN tk = new TAIKHOAN() { TenTN = textBox1.Text, Pass = textBox2.Text, rights = int.Parse(numericUpDown1.Value.ToString()) }; if (db.TAIKHOANs.Where(p => p.TenTN == textBox1.Text).SingleOrDefault() == null) { db.TAIKHOANs.InsertOnSubmit(tk); db.SubmitChanges(); fill(); MessageBox.Show("Thêm thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Tên đăng nhập đã tồn tại", "Thêm không thành công", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } }
private void button3_Click(object sender, EventArgs e) { if (MessageBox.Show("Bạn có muốn xóa không?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation) == DialogResult.Yes) { if (textBox1.Text != "") { TAIKHOAN tk = db.TAIKHOANs.Where(p => p.TenTN == textBox1.Text).SingleOrDefault(); if (tk != null) { db.TAIKHOANs.DeleteOnSubmit(tk); db.SubmitChanges(); fill(); MessageBox.Show("Xoá thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Tên đăng nhập không tồn tại", "Xóa không thành công", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } else { MessageBox.Show("Mời bạn chọn người dùng để xóa", "Xóa không thành công", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } }
private void btnXacNhan_DMK_Click(object sender, EventArgs e) { TAIKHOAN tk = db.TAIKHOANs.SingleOrDefault(p => p.TenTN == frm_login.adminis); if (txtMatKhauCu_DMK.Text == "" || txtMatKhauMoi_DMK.Text == "" || txtXacNhanMk_DMK.Text == "") { MessageBox.Show("Vui lòng nhập đầy đủ để đổi mật khẩu", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); txtMatKhauCu_DMK.Focus(); } else { if (txtMatKhauCu_DMK.Text != tk.Pass) { MessageBox.Show("Sai mật khẩu \nVui lòng nhập lại!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); txtMatKhauCu_DMK.Focus(); txtMatKhauCu_DMK.SelectAll(); } else { if (txtXacNhanMk_DMK.Text == txtMatKhauMoi_DMK.Text) { tk.Pass = txtMatKhauMoi_DMK.Text; db.SubmitChanges(); MessageBox.Show("Đổi mật khẩu thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); } else { MessageBox.Show("Mật khẩu mới và xác nhận mật khẩu mới không trùng khớp \nVui lòng nhập lại!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); txtXacNhanMk_DMK.Focus(); txtXacNhanMk_DMK.SelectAll(); } } } }
private void binding(string id) { TAIKHOAN tk = db.TAIKHOANs.Where(p => p.TenTN == id).SingleOrDefault(); textBox1.Text = tk.TenTN; textBox2.Text = tk.Pass; numericUpDown1.Value = tk.rights.Value; }
private void login_Click(object sender, EventArgs e) { TAIKHOAN us = db.TAIKHOANs.SingleOrDefault(p => p.TenTN == username.Text); TAIKHOAN tk = db.TAIKHOANs.Where(p => p.TenTN == username.Text).SingleOrDefault(); if (username.Text == "" || password.Text == "") { MessageBox.Show("Vui lòng nhập đầy đủ thông tin", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); login.Focus(); } else { if (us != null) { if (username.Text == tk.TenTN && password.Text == tk.Pass) { frm_trangChu.setadmin = true; adminis = username.Text; right = us.rights.ToString(); MessageBox.Show("HI " + adminis + " ! Bạn đã đăng nhập thành công !", "Thông báo ! ", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); } else { MessageBox.Show("Sai tên đăng nhập hoặc mật khẩu \nVui lòng đăng nhập lại!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); password.Focus(); password.SelectAll(); } } else { MessageBox.Show("Sai tên đăng nhập hoặc mật khẩu \nVui lòng đăng nhập lại!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); password.Focus(); password.SelectAll(); } } }
partial void DeleteTAIKHOAN(TAIKHOAN instance);
partial void UpdateTAIKHOAN(TAIKHOAN instance);
partial void InsertTAIKHOAN(TAIKHOAN instance);