Example #1
0
        private void timKiemTheoTenSach(string tenSach)
        {
            this.dgvPhieuMuon.DataSource = null;
            DataTable dt = BUS_OBJ.timKiemPhieuMuonDaTraTheoMaSach(BUS_OBJ.layMaSachTheoTenSach(tenSach));

            if (dt.Rows.Count != 0)
            {
                this.dgvPhieuMuon.DataSource = dt;
                hieuChinhDGV();
            }
            else
            {
                MetroFramework.MetroMessageBox.Show(this, "Không tìm thấy phiếu mượn của tựa sách này.", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                txtThongTinTimKiem.Focus();
            }
        }