Beispiel #1
0
        private void timKiemTheoTenChuThe(string tenChuThe)
        {
            this.dgvPhieuMuon.DataSource = null;
            DataTable dt = BUS_OBJ.timKiemPhieuMuonDaTraTheoMaThe(BUS_OBJ.layMaDocGiaTheoTenDocGia(tenChuThe));

            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 chủ thẻ tương tự.", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                txtThongTinTimKiem.Focus();
            }
        }