private void themTK() //xử lý Thêm { NGUOIDUNG _nd = new NGUOIDUNG { MA = int.Parse(txtMaAdmin.Text), HOTEN = txtHoTen.Text, TaiKhoan = txtUserName.Text, MatKhau = txtPassWord.Text }; if (txtMaAdmin.Text == "" || txtHoTen.Text == "" || txtUserName.Text == "" || txtPassWord.Text == "") { MessageBox.Show("Một số thông tin còn thiếu. Mời ấn vào Thêm để thêm trở lại!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { if (db.NGUOIDUNGs.Where(p => p.MA == _nd.MA).SingleOrDefault() != null) { MessageBox.Show("Mã Admin vừa tạo bị trùng! Mời nhập lại !", "Thông báo ", MessageBoxButtons.OK, MessageBoxIcon.Information); clearText(); } else { _nd.PhanQuyen = false; db.NGUOIDUNGs.InsertOnSubmit(_nd); db.SubmitChanges(); loadds(); MessageBox.Show("Thêm thành công !", "Thông báo ", MessageBoxButtons.OK, MessageBoxIcon.Information); } } }
private void trơLaiĐăngNhâpToolStripMenuItem_Click(object sender, EventArgs e) { FrmLogin log = new FrmLogin(); log.ShowDialog(); nd = log.nd; chkPhanQuyen(); }
static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); NGUOIDUNG nd = new NGUOIDUNG(); Application.Run(new QLAdmin()); // Application.Run(new frmDayPhong()); }
private void suaTK() //xử lý Sửa { NGUOIDUNG nd = db.NGUOIDUNGs.Where(p => p.MA == int.Parse(txtMaAdmin.Text)).SingleOrDefault(); if (nd != null) { nd.HOTEN = txtHoTen.Text; nd.TaiKhoan = txtUserName.Text; nd.MatKhau = txtPassWord.Text; db.SubmitChanges(); loadds(); MessageBox.Show("Sửa thông tin thành công !", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
private void btnXoaTK_Click(object sender, EventArgs e) //bấm Xóa { NGUOIDUNG nd = db.NGUOIDUNGs.Where(p => p.MA == int.Parse(txtMaAdmin.Text)).SingleOrDefault(); if (nd != null) { DialogResult dr = MessageBox.Show("Bạn có muốn xóa?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (dr == DialogResult.Yes) { db.NGUOIDUNGs.DeleteOnSubmit(nd); db.SubmitChanges(); loadds(); MessageBox.Show("Xóa thành công", "Thông báo", MessageBoxButtons.OK); } } }
private void btnLogin_Click(object sender, EventArgs e) { QLKTXDataContext db = new QLKTXDataContext(); nd = (from NGUOIDUNG in db.NGUOIDUNGs where NGUOIDUNG.TaiKhoan == txtuser.Text.Trim() && NGUOIDUNG.MatKhau == txtpass.Text select NGUOIDUNG ).SingleOrDefault(); if (nd == null) { lblMessage.Text = "Sai mật khẫu hoặc tài khoản !"; nd = new NGUOIDUNG(); } else { this.Close(); } }
private void btnluu_Click(object sender, EventArgs e) { NGUOIDUNG nd = db.NGUOIDUNGs.SingleOrDefault(p => p.TaiKhoan == txtuser.Text); if (nd != null) { if (nd.MatKhau == txtmkcu.Text) { nd.MatKhau = txtmkm.Text; db.SubmitChanges(); MessageBox.Show("Thay đổi mật khẩu thành công !", "Thông báo ", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Mật khẩu cũ không đúng !", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else { MessageBox.Show("Người dùng không tồn tại ", "Thông báo ", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
partial void DeleteNGUOIDUNG(NGUOIDUNG instance);
partial void UpdateNGUOIDUNG(NGUOIDUNG instance);
partial void InsertNGUOIDUNG(NGUOIDUNG instance);
public frmMain(NGUOIDUNG _nd) { InitializeComponent(); nd = _nd; chkPhanQuyen(); }