private void btnDangNhap_Click(object sender, EventArgs e)
        {
            FileStream   fs        = new FileStream("Pass.txt", FileMode.Append);
            StreamWriter writeFile = new StreamWriter(fs, Encoding.UTF8);

            if (chkNMK.Checked == true)
            {
                writeFile.WriteLine(txtMatKhau.Text);
                writeFile.WriteLine(txtTenDangNhap.Text);
                writeFile.WriteLine("1");
                writeFile.Flush();
            }
            else
            {
                writeFile.WriteLine("0");
            }
            writeFile.Close();
            {
                if (txtMatKhau.Text == "")
                {
                    MessageBox.Show("Chưa nhập mật khẩu", "Thông Báo");
                    return;
                }
                if (txtTenDangNhap.Text == "")
                {
                    MessageBox.Show("Chưa nhập tên đăng nhập", "Thông Báo");
                    return;
                }
                String     Sql     = "Select * From NhanVien Where  TaiKhoan=@TaiKhoan And MatKhau=@MatKhau";
                SqlCommand command = new SqlCommand(Sql, DB.Connection);

                command.Connection.Open();
                command.Parameters.AddWithValue("@TaiKhoan", txtTenDangNhap.Text);
                command.Parameters.AddWithValue("@MatKhau", txtMatKhau.Text);
                SqlDataReader reader = command.ExecuteReader();

                if (reader.Read())
                {
                    MaNV   = Convert.ToString(reader["MaNhanVien"]);
                    VaiTro = Convert.ToBoolean(reader["VaiTro"]);
                    MessageBox.Show("Chúc mừng ! bạn đã đăng nhập thành công", "Thông Báo");
                    this.Visible = false;
                }
                else
                {
                    MessageBox.Show("Tên đăng nhập hoặc Mật khẩu không đúng !", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    return;
                }

                command.Connection.Close();
            }
            this.Visible = false;
            frmChinh a = new frmChinh();

            a.ShowDialog();
        }
        private void btnDangNhap_Click(object sender, EventArgs e)
        {
            FileStream fs = new FileStream("Pass.txt", FileMode.Append);
            StreamWriter writeFile = new StreamWriter(fs, Encoding.UTF8);
            if (chkNMK.Checked == true)
            {
                writeFile.WriteLine(txtMatKhau.Text);
                writeFile.WriteLine(txtTenDangNhap.Text);
                writeFile.WriteLine("1");
                writeFile.Flush();
            }
            else writeFile.WriteLine("0");
            writeFile.Close();
            {
                if (txtMatKhau.Text == "")
                {
                    MessageBox.Show("Chưa nhập mật khẩu", "Thông Báo");
                    return;
                }
                if (txtTenDangNhap.Text == "")
                {
                    MessageBox.Show("Chưa nhập tên đăng nhập", "Thông Báo");
                    return;
                }
                String Sql = "Select * From NhanVien Where  TaiKhoan=@TaiKhoan And MatKhau=@MatKhau";
                SqlCommand command = new SqlCommand(Sql, DB.Connection);

                command.Connection.Open();
                command.Parameters.AddWithValue("@TaiKhoan", txtTenDangNhap.Text);
                command.Parameters.AddWithValue("@MatKhau", txtMatKhau.Text);
                SqlDataReader reader = command.ExecuteReader();

                if (reader.Read())
                {
                    MaNV = Convert.ToString(reader["MaNhanVien"]);
                    VaiTro = Convert.ToBoolean(reader["VaiTro"]);
                    MessageBox.Show("Chúc mừng ! bạn đã đăng nhập thành công", "Thông Báo");
                    this.Visible = false;

                }
                else
                {
                    MessageBox.Show("Tên đăng nhập hoặc Mật khẩu không đúng !", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    return;
                }

                command.Connection.Close();
            }
            this.Visible = false;
            frmChinh a = new frmChinh();
            a.ShowDialog();
        }