private void HoaDon_FormClosed(object sender, FormClosedEventArgs e) { string xoabangban = "delete BANHANG"; cn.ThucThiDl(xoabangban); FrmNhanVien nv = new FrmNhanVien(); nv.Refresh(); }
private void button1_Click(object sender, EventArgs e) { string user = textBox1.Text.Trim(); string pass = textBox2.Text.Trim(); passdoi = pass; string sql = "select * from TAIKHOAN where TenTK='" + user + "'and MK='" + pass + "'"; if (user != "" || pass != "") { if (cn.XemDL(sql).Rows.Count != 0) { string sql2 = "select CV from TAIKHOAN where TenTK='" + user + "'and MK='" + pass + "'"; quyen = cn.XemDL(sql2).Rows[0][0].ToString().Trim(); this.Hide(); name = user; if (quyen == "Admin") { FrmChaoMung cm = new FrmChaoMung(); FrmAdmin ad = new FrmAdmin(); Dem.sum = 1; ad.Show(); this.Close(); } else if (quyen == "Kho") { FrmNVKho kho = new FrmNVKho(); Dem.sum = 1; kho.Show(); this.Close(); } else { FrmNhanVien nv = new FrmNhanVien(); Dem.sum = 1; nv.Show(); this.Close(); } } else { MessageBox.Show("Sai tên đăng nhập hoặc mật khẩu! Vui lòng thử lại!", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); textBox1.Clear(); textBox2.Clear(); textBox1.Focus(); } } else { MessageBox.Show("Vui lòng nhập đầy đủ thông tin đăng nhập!", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); textBox1.Clear(); textBox2.Clear(); textBox1.Focus(); } }