private void InitializeReportPreview()
 {
     DataTable adjustment_memo = new DataTable();
     adjustment_memo =AdjustmentMemoManager.GetAllPhysicalCountAdjustmentMemos();
        // adjustment_memo.WriteXmlSchema("D:\\physical_count_adjustment_memo.xsd");
        ReportDocument rptDoc = new ReportDocuments.rptPhysicalCountAdjustmentMemo ();
        rptDoc.SetDataSource(adjustment_memo);
     this.crViewerAdjustmentMemo.ReportSource = rptDoc;
 }
        private void InitializeReportPreview()
        {
            DataTable adjustment_memo = new DataTable();

            adjustment_memo = AdjustmentMemoManager.GetAllPhysicalCountAdjustmentMemos();
            // adjustment_memo.WriteXmlSchema("D:\\physical_count_adjustment_memo.xsd");
            ReportDocument rptDoc = new ReportDocuments.rptPhysicalCountAdjustmentMemo();

            rptDoc.SetDataSource(adjustment_memo);
            this.crViewerAdjustmentMemo.ReportSource = rptDoc;
        }