private void btnLuu_Click(object sender, EventArgs e)
        {
            if (cboMTG.Text == "")
            {
                MessageBox.Show("Bạn cần nhập mã tác giả!");
                cboMTG.Focus();
                return;
            }
            if (txtTTG.Text == "")
            {
                MessageBox.Show("Bạn cần nhập tên tác giả!");
                txtTTG.Focus();
                return;
            }
            if (txtNS.Text == "")
            {
                MessageBox.Show("Bạn cần nhập ngày sinh!");
                txtNS.Focus();
                return;
            }
            if (cboGT.Text == "")
            {
                MessageBox.Show("Bạn cần nhập giới tính!");
                txtTTG.Focus();
                return;
            }
            if (txtDC.Text == "")
            {
                MessageBox.Show("Bạn cần nhập địa chỉ!");
                txtTTG.Focus();
                return;
            }
            string sql = "SELECT MaTG FROM TacGia WHERE MaTG = '" + cboMTG.Text + "'";

            if (DAO.checkKeyExit(sql))
            {
                MessageBox.Show("Mã tác giả này đã tồn tại, bạn phải nhập mã khác", "Thông báo",
                                MessageBoxButtons.OK, MessageBoxIcon.Warning);
                cboMTG.Focus();
                cboMTG.Text = "";
                return;
            }
            sql = "INSERT INTO TacGia (MaTG, TenTG, NgaySinh, GioiTinh, DiaChi) VALUES ('" + cboMTG.Text + "', N'" + txtTTG.Text + "', '" + DAO.ConvertDateTime(txtNS.Text) + "', N'" + cboGT.Text + "', '" + txtDC.Text + "')";
            DAO.RunSql(sql);

            LoadDataToGridview();
        }