public void GivenTheXRSubreportContainerExistsInTheParentReportBand(string location)
        {
            const string nameToUse = "SubReportContainer";

            Band band;
            switch (location.ToUpper())
            {
                case "HEADER":  
                    band = new ReportHeaderBand();
                    _getContainerFunc = r => (XRSubreport)r.Bands[BandKind.ReportHeader].Controls[nameToUse];
                    break;
                case "FOOTER":
                    band = new ReportFooterBand();
                    _getContainerFunc = r => (XRSubreport) r.Bands[BandKind.ReportFooter].Controls[nameToUse];
                    break;
                case "DETAIL":
                    band = new DetailBand();
                    _getContainerFunc = r => (XRSubreport) r.Bands[BandKind.Detail].Controls[nameToUse];
                    break;
                default:
                    throw new NotImplementedException();
            }

            _parentReport.Bands.Add(band);
            _xrSubreportContainer = new XRSubreport {Name = nameToUse};
            band.Controls.Add(_xrSubreportContainer);

        }
 public void GivenTheReportContainsAnImagePlaceholder()
 {
     var detail = new DetailBand();
     _imageContainer = new XRPictureBox {Name = "Penguins"};
     detail.Controls.Add(_imageContainer);
     _report.Bands.Add(detail);
 }
Ejemplo n.º 3
0
    public void buildDynamicReport(DataSet ds, PageHeaderBand PageHeader, DetailBand Detail)
    {
        // create a table to display header
        XRTable tableHeader = new XRTable();
        tableHeader.BeginInit();

        tableHeader.Width = (this.PageWidth - (this.Margins.Left + this.Margins.Right));
        XRTableRow headerRow = new XRTableRow();
        tableHeader.Rows.Add(headerRow);
        XRTable tableDetail = new XRTable();
        tableDetail.BeginInit();

        tableDetail.Width = (this.PageWidth - (this.Margins.Left + this.Margins.Right));

        XRTable tableDetail2 = new XRTable();
        tableDetail2.BeginInit();
        tableDetail.Height = 20;
        tableDetail.Width = (this.PageWidth - (this.Margins.Left + this.Margins.Right));

        XRTableRow detailRow = new XRTableRow();

        // add detailRow into tableDetails
        tableDetail.Rows.Add(detailRow);

        // loop table headercell and table detailCell
        int i = 0;
        for (i = 0; i < ds.Tables[1].Rows.Count; i++)
        {
            XRTableCell headerCell = new XRTableCell();
            headerCell.Width = Int32.Parse(ds.Tables[1].Rows[i][5].ToString());
            headerCell.Text = ds.Tables[1].Rows[i][3].ToString();
            headerCell.StyleName = ds.Tables[1].Rows[i]["style"].ToString();
            XRTableCell detailCell = new XRTableCell();
            detailCell.StyleName = ds.Tables[1].Rows[i]["style"].ToString();
            detailCell.DataBindings.Add("Text", null, ds.Tables[1].Rows[i]["fieldname"].ToString());

            if (i == 0)
            {
                headerCell.Borders = BorderSide.Left | BorderSide.Top | BorderSide.Bottom;
                detailCell.Borders = BorderSide.Left | BorderSide.Top | BorderSide.Bottom;
            }
            else
            {
                headerCell.Borders = BorderSide.All;
                detailCell.Borders = BorderSide.All;
            }
            headerRow.Cells.Add(headerCell);
            detailRow.Cells.Add(detailCell);
        }

        tableDetail.EndInit();
        tableHeader.EndInit();

        PageHeader.Controls.Add(tableHeader);
        Detail.Controls.Add(tableDetail);

        //this.DataSource = ds;
    }
        public void InitBands(XtraReport rep)
        {
            DetailBand detail = new DetailBand();
            PageHeaderBand pageHeader = new PageHeaderBand();
            ReportFooterBand reportFooter = new ReportFooterBand();
            detail.Height = 20;
            reportFooter.Height = 380;
            pageHeader.Height = 20;

            rep.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] { detail, pageHeader, reportFooter });
        }
Ejemplo n.º 5
0
        public XtraReport CreateDataGroupingReport()
        {
            // Create a report, and bind it to a data source.
            XtraReport report = new XtraReport();
            DataSet1 ds = new DataSet1();
            new DataSet1TableAdapters.OrdersTableAdapter().Fill(ds.Orders);
            report.DataSource = ds;
            report.DataMember = "Orders";

            // Create a detail band and add it to the report.
            DetailBand detailBand = new DetailBand();
            detailBand.Height = 20;
            report.Bands.Add(detailBand);

            // Create a group header band and add it to the report.
            GroupHeaderBand ghBand = new GroupHeaderBand();
            ghBand.Height = 20;
            report.Bands.Add(ghBand);

            // Create a calculated field, and add it to the report's collection
            CalculatedField calcField = new CalculatedField(report.DataSource, report.DataMember);
            report.CalculatedFields.Add(calcField);

            // Define its name, field type and expression.
            // Note that numerous built-in date-time functions are supported.
            calcField.Name = "dayOfWeek";
            calcField.FieldType = FieldType.None;
            calcField.Expression = "GetDayOfWeek([OrderDate])";

            // Define the calculated field as 
            // a grouping criteria for the group header band.
            GroupField groupField = new GroupField();
            groupField.FieldName = "dayOfWeek";
            ghBand.GroupFields.Add(groupField);

            // Create two data-bound labels, and add them to 
            // the corresponding bands.
            XRLabel ghLabel = new XRLabel();
            ghLabel.DataBindings.Add("Text", report.DataSource, "OrderDate", "{0:dddd}");
            ghLabel.BackColor = Color.Red;
            ghBand.Controls.Add(ghLabel);

            XRLabel detailLabel = new XRLabel();
            detailLabel.DataBindings.Add("Text", report.DataSource, "OrderDate", "{0:MM/dd/yyyy}");
            detailLabel.ProcessDuplicates = ValueSuppressType.Suppress;
            detailBand.Controls.Add(detailLabel);

            return report;
        }
        private static MyReportBase CreateReport(string reportName)
        {
            var report = new MyReportBase();

            report.Name = reportName;
            report.DisplayName = reportName;

            var Detail = new DetailBand();
            var TopMargin = new TopMarginBand();
            var BottomMargin = new BottomMarginBand();

            report.Bands.AddRange(new DevExpress.XtraReports.UI.Band[]
            {
                Detail,
                TopMargin,
                BottomMargin
            });

            return report;
        }
Ejemplo n.º 7
0
        public void Should_pass_root_hashcode()
        {
            var view = new XtraReport {DataSource = new[] {new object(), new object()}};

            var detailBand = new DetailBand();
            var container = new XRSubreport();
            var subReport = new MyReportBase();

            container.ReportSource = subReport;
            detailBand.Controls.Add(container);
            view.Bands.Add(detailBand);

            IReportController myController = new XRReportController(view);
            Action<XtraReport> printAction = r => r.ExportToMemory();
            var newView = myController.Print(printAction);

            var subReportsHashcode =
                ((MyReportBase) ((XRSubreport) newView.Bands[BandKind.Detail].Controls[0]).ReportSource).RootHashCode;

            newView.RootHashCode.Should().NotBe(0);

            subReportsHashcode.Should().Be(newView.RootHashCode);
        }
        public void Handler_wireup_should_be_predicatable()
        {
            var myBase = new MyReportBase();
            var detailBand = new DetailBand();
            var container = new XRSubreport();
            var subReport = new MyReportBase();

            container.ReportSource = subReport;
            detailBand.Controls.Add(container);
            myBase.Bands.Add(detailBand);

            myBase.DataSource = new[]
                                    {
                                        new object(),
                                        new object(),
                                        new object(),
                                        new object()
                                    };

            var controller = new DataSourceTrackingController(myBase, (s, ds) => _counter++);
            controller.Print(r => r.ExportToMemory());
            _counter.Should().Be(4);
        }
 protected BaseDetailBandHelper(XtraReport report, XtraReportBase detailReport = null)
     : base(report, detailReport)
 {
     this.ContainerBand = this.CreateContainerBand();
 }
Ejemplo n.º 10
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            string resourceFileName = "rp_SalaryByMonth.resx";

            this.Detail                       = new DevExpress.XtraReports.UI.DetailBand();
            this.TopMargin                    = new DevExpress.XtraReports.UI.TopMarginBand();
            this.BottomMargin                 = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.ReportHeader                 = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrTable2                     = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell12                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableRow3                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell13                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell14                = new DevExpress.XtraReports.UI.XRTableCell();
            this.tblReportHeader              = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow19                 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrCellTenBieuMau             = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableRow4                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell11                = new DevExpress.XtraReports.UI.XRTableCell();
            this.PageHeader                   = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.tblPageHeader                = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow11                 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell241               = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell10                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell242               = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell16                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell1                 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2                 = new DevExpress.XtraReports.UI.XRTableCell();
            this.formattingRule1              = new DevExpress.XtraReports.UI.FormattingRule();
            this.ReportFooter                 = new DevExpress.XtraReports.UI.ReportFooterBand();
            this.xrTable5                     = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow7                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell18                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell19                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTable4                     = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow6                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell15                = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellTotal             = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTable3                     = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow5                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell8                 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellText              = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrLabel2                     = new DevExpress.XtraReports.UI.XRLabel();
            this.xrLabel1                     = new DevExpress.XtraReports.UI.XRLabel();
            this.lblReportDate                = new DevExpress.XtraReports.UI.XRLabel();
            this.xrTable1                     = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1                  = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTextTongSo                 = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellTotalWagesMonth   = new DevExpress.XtraReports.UI.XRTableCell();
            this.lblThuTruong                 = new DevExpress.XtraReports.UI.XRLabel();
            this.tblDetail                    = new DevExpress.XtraReports.UI.XRTable();
            this.xrDetailRow1                 = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCellTotalWages        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellTotalIncome       = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellInsurrance        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellPersonalIncomeTax = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellOtherIncome       = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCellTheWorkCost       = new DevExpress.XtraReports.UI.XRTableCell();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblReportHeader)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblPageHeader)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            //
            // Detail
            //
            this.Detail.HeightF = 25F;
            this.Detail.Name    = "Detail";
            this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.StylePriority.UseBorders = false;
            this.Detail.TextAlignment            = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // TopMargin
            //
            this.TopMargin.HeightF       = 15F;
            this.TopMargin.Name          = "TopMargin";
            this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // BottomMargin
            //
            this.BottomMargin.HeightF       = 0F;
            this.BottomMargin.Name          = "BottomMargin";
            this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // ReportHeader
            //
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable2,
                this.tblReportHeader
            });
            this.ReportHeader.HeightF = 86F;
            this.ReportHeader.Name    = "ReportHeader";
            //
            // xrTable2
            //
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 42.00001F);
            this.xrTable2.Name          = "xrTable2";
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow2,
                this.xrTableRow3
            });
            this.xrTable2.SizeF = new System.Drawing.SizeF(761.3389F, 34F);
            //
            // xrTableRow2
            //
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell12
            });
            this.xrTableRow2.Name   = "xrTableRow2";
            this.xrTableRow2.Weight = 0.79999990231146945D;
            //
            // xrTableCell12
            //
            this.xrTableCell12.Font = new System.Drawing.Font("Times New Roman", 7F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.xrTableCell12.Name = "xrTableCell12";
            this.xrTableCell12.StylePriority.UseFont = false;
            this.xrTableCell12.Text   = "BẢNG TỔNG HỢP  LƯƠNG THÁNG 9 / 2017";
            this.xrTableCell12.Weight = 3.9966622210905545D;
            //
            // xrTableRow3
            //
            this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell13,
                this.xrTableCell14
            });
            this.xrTableRow3.Name   = "xrTableRow3";
            this.xrTableRow3.Weight = 0.33333324536656561D;
            //
            // xrTableCell13
            //
            this.xrTableCell13.Name    = "xrTableCell13";
            this.xrTableCell13.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.xrTableCell13.StylePriority.UsePadding = false;
            this.xrTableCell13.Weight = 1.5748560433256003D;
            //
            // xrTableCell14
            //
            this.xrTableCell14.Name   = "xrTableCell14";
            this.xrTableCell14.Weight = 2.4218061963804294D;
            //
            // tblReportHeader
            //
            this.tblReportHeader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.tblReportHeader.Name          = "tblReportHeader";
            this.tblReportHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow19,
                this.xrTableRow4
            });
            this.tblReportHeader.SizeF = new System.Drawing.SizeF(761.3389F, 34F);
            //
            // xrTableRow19
            //
            this.xrTableRow19.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrCellTenBieuMau
            });
            this.xrTableRow19.Name   = "xrTableRow19";
            this.xrTableRow19.Weight = 0.41805549924192159D;
            //
            // xrCellTenBieuMau
            //
            this.xrCellTenBieuMau.Font = new System.Drawing.Font("Times New Roman", 5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.xrCellTenBieuMau.Name = "xrCellTenBieuMau";
            this.xrCellTenBieuMau.StylePriority.UseFont          = false;
            this.xrCellTenBieuMau.StylePriority.UseTextAlignment = false;
            this.xrCellTenBieuMau.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrCellTenBieuMau.Weight        = 3.9966622210905545D;
            //
            // xrTableRow4
            //
            this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell11
            });
            this.xrTableRow4.Name   = "xrTableRow4";
            this.xrTableRow4.Weight = 0.71527764843611341D;
            //
            // xrTableCell11
            //
            this.xrTableCell11.Name = "xrTableCell11";
            this.xrTableCell11.StylePriority.UseTextAlignment = false;
            this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            this.xrTableCell11.Weight        = 3.99666223970603D;
            //
            // PageHeader
            //
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.tblPageHeader
            });
            this.PageHeader.HeightF = 155.0595F;
            this.PageHeader.Name    = "PageHeader";
            //
            // tblPageHeader
            //
            this.tblPageHeader.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.tblPageHeader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 55.05952F);
            this.tblPageHeader.Name          = "tblPageHeader";
            this.tblPageHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow11
            });
            this.tblPageHeader.SizeF = new System.Drawing.SizeF(803.0001F, 100F);
            this.tblPageHeader.StylePriority.UseBorders = false;
            //
            // xrTableRow11
            //
            this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell241,
                this.xrTableCell10,
                this.xrTableCell242,
                this.xrTableCell16,
                this.xrTableCell1,
                this.xrTableCell2
            });
            this.xrTableRow11.Name   = "xrTableRow11";
            this.xrTableRow11.Weight = 9.2D;
            //
            // xrTableCell241
            //
            this.xrTableCell241.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell241.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell241.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell241.Name = "xrTableCell241";
            this.xrTableCell241.StylePriority.UseBorderColor = false;
            this.xrTableCell241.StylePriority.UseBorders     = false;
            this.xrTableCell241.StylePriority.UseFont        = false;
            this.xrTableCell241.Text   = "Tổng tiền lương";
            this.xrTableCell241.Weight = 0.47482605866316707D;
            //
            // xrTableCell10
            //
            this.xrTableCell10.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell10.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell10.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell10.Name = "xrTableCell10";
            this.xrTableCell10.StylePriority.UseBorderColor = false;
            this.xrTableCell10.StylePriority.UseBorders     = false;
            this.xrTableCell10.StylePriority.UseFont        = false;
            this.xrTableCell10.Text   = "Tổng thu nhập";
            this.xrTableCell10.Weight = 0.4635389334915101D;
            //
            // xrTableCell242
            //
            this.xrTableCell242.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell242.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                     | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell242.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell242.Name = "xrTableCell242";
            this.xrTableCell242.StylePriority.UseBorderColor = false;
            this.xrTableCell242.StylePriority.UseBorders     = false;
            this.xrTableCell242.StylePriority.UseFont        = false;
            this.xrTableCell242.Text   = "BHXH,BHYT,BHTN";
            this.xrTableCell242.Weight = 0.67302614653114712D;
            //
            // xrTableCell16
            //
            this.xrTableCell16.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell16.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell16.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell16.Name = "xrTableCell16";
            this.xrTableCell16.StylePriority.UseBorderColor = false;
            this.xrTableCell16.StylePriority.UseBorders     = false;
            this.xrTableCell16.StylePriority.UseFont        = false;
            this.xrTableCell16.Text   = "Thuế thu nhập cá nhân";
            this.xrTableCell16.Weight = 0.72445911061355661D;
            //
            // xrTableCell1
            //
            this.xrTableCell1.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell1.Borders     = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.StylePriority.UseBorderColor = false;
            this.xrTableCell1.StylePriority.UseBorders     = false;
            this.xrTableCell1.StylePriority.UseFont        = false;
            this.xrTableCell1.Text   = "Thu khác";
            this.xrTableCell1.Weight = 0.54480146016993436D;
            //
            // xrTableCell2
            //
            this.xrTableCell2.BorderColor = System.Drawing.Color.DarkGray;
            this.xrTableCell2.Borders     = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                                    | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                   | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCell2.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableCell2.Name = "xrTableCell2";
            this.xrTableCell2.StylePriority.UseBorderColor = false;
            this.xrTableCell2.StylePriority.UseBorders     = false;
            this.xrTableCell2.StylePriority.UseFont        = false;
            this.xrTableCell2.Text   = "Công tác phí";
            this.xrTableCell2.Weight = 0.54114028991361063D;
            //
            // formattingRule1
            //
            this.formattingRule1.Name = "formattingRule1";
            //
            // ReportFooter
            //
            this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable5,
                this.xrTable4,
                this.xrTable3,
                this.xrLabel2,
                this.xrLabel1,
                this.lblReportDate,
                this.xrTable1,
                this.lblThuTruong,
                this.tblDetail
            });
            this.ReportFooter.HeightF = 252.1667F;
            this.ReportFooter.Name    = "ReportFooter";
            //
            // xrTable5
            //
            this.xrTable5.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 93.15472F);
            this.xrTable5.Name          = "xrTable5";
            this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow7
            });
            this.xrTable5.SizeF = new System.Drawing.SizeF(378.149F, 25F);
            this.xrTable5.StylePriority.UseBorders = false;
            //
            // xrTableRow7
            //
            this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell18,
                this.xrTableCell19
            });
            this.xrTableRow7.Name   = "xrTableRow7";
            this.xrTableRow7.Weight = 1D;
            //
            // xrTableCell18
            //
            this.xrTableCell18.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCell18.Name    = "xrTableCell18";
            this.xrTableCell18.StylePriority.UseBorders       = false;
            this.xrTableCell18.StylePriority.UseTextAlignment = false;
            this.xrTableCell18.Text          = "Trong đó";
            this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTableCell18.Weight        = 0.54932342646152388D;
            //
            // xrTableCell19
            //
            this.xrTableCell19.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCell19.Name    = "xrTableCell19";
            this.xrTableCell19.StylePriority.UseBorders       = false;
            this.xrTableCell19.StylePriority.UseTextAlignment = false;
            this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell19.Weight        = 1.3148848042021257D;
            //
            // xrTable4
            //
            this.xrTable4.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 118.1547F);
            this.xrTable4.Name          = "xrTable4";
            this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow6
            });
            this.xrTable4.SizeF = new System.Drawing.SizeF(378.149F, 25F);
            this.xrTable4.StylePriority.UseBorders = false;
            //
            // xrTableRow6
            //
            this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell15,
                this.xrTableCellTotal
            });
            this.xrTableRow6.Name   = "xrTableRow6";
            this.xrTableRow6.Weight = 1D;
            //
            // xrTableCell15
            //
            this.xrTableCell15.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCell15.Name    = "xrTableCell15";
            this.xrTableCell15.StylePriority.UseBorders       = false;
            this.xrTableCell15.StylePriority.UseTextAlignment = false;
            this.xrTableCell15.Text          = "TỔNG CỘNG";
            this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTableCell15.Weight        = 0.54932342646152388D;
            //
            // xrTableCellTotal
            //
            this.xrTableCellTotal.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCellTotal.Name    = "xrTableCellTotal";
            this.xrTableCellTotal.StylePriority.UseBorders       = false;
            this.xrTableCellTotal.StylePriority.UseTextAlignment = false;
            this.xrTableCellTotal.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellTotal.Weight        = 1.3148848042021257D;
            //
            // xrTable3
            //
            this.xrTable3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 68.15474F);
            this.xrTable3.Name          = "xrTable3";
            this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow5
            });
            this.xrTable3.SizeF = new System.Drawing.SizeF(378.149F, 25F);
            this.xrTable3.StylePriority.UseBorders = false;
            //
            // xrTableRow5
            //
            this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell8,
                this.xrTableCellText
            });
            this.xrTableRow5.Name   = "xrTableRow5";
            this.xrTableRow5.Weight = 1D;
            //
            // xrTableCell8
            //
            this.xrTableCell8.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCell8.Name    = "xrTableCell8";
            this.xrTableCell8.StylePriority.UseBorders       = false;
            this.xrTableCell8.StylePriority.UseTextAlignment = false;
            this.xrTableCell8.Text          = "Bằng chữ";
            this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTableCell8.Weight        = 0.54932342646152388D;
            //
            // xrTableCellText
            //
            this.xrTableCellText.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCellText.Name    = "xrTableCellText";
            this.xrTableCellText.StylePriority.UseBorders       = false;
            this.xrTableCellText.StylePriority.UseTextAlignment = false;
            this.xrTableCellText.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellText.Weight        = 1.3148848042021257D;
            //
            // xrLabel2
            //
            this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 6F, System.Drawing.FontStyle.Bold);
            this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(83.53977F, 194.7619F);
            this.xrLabel2.Name                           = "xrLabel2";
            this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel2.SizeF                          = new System.Drawing.SizeF(121.7877F, 25.00001F);
            this.xrLabel2.StylePriority.UseFont          = false;
            this.xrLabel2.StylePriority.UseTextAlignment = false;
            this.xrLabel2.Text                           = "TỔNG GIÁM ĐỐC";
            this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrLabel1
            //
            this.xrLabel1.Font                           = new System.Drawing.Font("Times New Roman", 6F, System.Drawing.FontStyle.Bold);
            this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(322.6191F, 195.8333F);
            this.xrLabel1.Name                           = "xrLabel1";
            this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrLabel1.SizeF                          = new System.Drawing.SizeF(121.7877F, 25.00001F);
            this.xrLabel1.StylePriority.UseFont          = false;
            this.xrLabel1.StylePriority.UseTextAlignment = false;
            this.xrLabel1.Text                           = "PHÒNG KẾ TOÁN";
            this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // lblReportDate
            //
            this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 7F, System.Drawing.FontStyle.Italic);
            this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(599.8099F, 165.625F);
            this.lblReportDate.Name                           = "lblReportDate";
            this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblReportDate.SizeF                          = new System.Drawing.SizeF(175.3329F, 15F);
            this.lblReportDate.StylePriority.UseFont          = false;
            this.lblReportDate.StylePriority.UseTextAlignment = false;
            this.lblReportDate.Text                           = "{0}, ngày {1} tháng {2} năm {3}";
            this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrTable1
            //
            this.xrTable1.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 43.15476F);
            this.xrTable1.Name          = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow1
            });
            this.xrTable1.SizeF = new System.Drawing.SizeF(378.149F, 25F);
            this.xrTable1.StylePriority.UseBorders = false;
            //
            // xrTableRow1
            //
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTextTongSo,
                this.xrTableCellTotalWagesMonth
            });
            this.xrTableRow1.Name   = "xrTableRow1";
            this.xrTableRow1.Weight = 1D;
            //
            // xrTextTongSo
            //
            this.xrTextTongSo.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTextTongSo.Name    = "xrTextTongSo";
            this.xrTextTongSo.StylePriority.UseBorders       = false;
            this.xrTextTongSo.StylePriority.UseTextAlignment = false;
            this.xrTextTongSo.Text          = "TỔNG TIỀN LƯƠNG THÁNG 9/2017";
            this.xrTextTongSo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrTextTongSo.Weight        = 1.0855889282205971D;
            //
            // xrTableCellTotalWagesMonth
            //
            this.xrTableCellTotalWagesMonth.Borders = DevExpress.XtraPrinting.BorderSide.None;
            this.xrTableCellTotalWagesMonth.Name    = "xrTableCellTotalWagesMonth";
            this.xrTableCellTotalWagesMonth.StylePriority.UseBorders       = false;
            this.xrTableCellTotalWagesMonth.StylePriority.UseTextAlignment = false;
            this.xrTableCellTotalWagesMonth.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellTotalWagesMonth.Weight        = 0.77861930244305255D;
            //
            // lblThuTruong
            //
            this.lblThuTruong.Font                           = new System.Drawing.Font("Times New Roman", 6F, System.Drawing.FontStyle.Bold);
            this.lblThuTruong.LocationFloat                  = new DevExpress.Utils.PointFloat(624.6703F, 194.7619F);
            this.lblThuTruong.Name                           = "lblThuTruong";
            this.lblThuTruong.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.lblThuTruong.SizeF                          = new System.Drawing.SizeF(121.7877F, 25.00001F);
            this.lblThuTruong.StylePriority.UseFont          = false;
            this.lblThuTruong.StylePriority.UseTextAlignment = false;
            this.lblThuTruong.Text                           = "CHỦ TÀI KHOẢN";
            this.lblThuTruong.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // tblDetail
            //
            this.tblDetail.Borders       = DevExpress.XtraPrinting.BorderSide.None;
            this.tblDetail.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.tblDetail.Name          = "tblDetail";
            this.tblDetail.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrDetailRow1
            });
            this.tblDetail.SizeF = new System.Drawing.SizeF(803F, 25F);
            this.tblDetail.StylePriority.UseBorders = false;
            //
            // xrDetailRow1
            //
            this.xrDetailRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCellTotalWages,
                this.xrTableCellTotalIncome,
                this.xrTableCellInsurrance,
                this.xrTableCellPersonalIncomeTax,
                this.xrTableCellOtherIncome,
                this.xrTableCellTheWorkCost
            });
            this.xrDetailRow1.Name   = "xrDetailRow1";
            this.xrDetailRow1.Weight = 1D;
            //
            // xrTableCellTotalWages
            //
            this.xrTableCellTotalWages.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellTotalWages.Name    = "xrTableCellTotalWages";
            this.xrTableCellTotalWages.StylePriority.UseBorders       = false;
            this.xrTableCellTotalWages.StylePriority.UseFont          = false;
            this.xrTableCellTotalWages.StylePriority.UseTextAlignment = false;
            this.xrTableCellTotalWages.Text          = " ";
            this.xrTableCellTotalWages.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellTotalWages.Weight        = 0.39584745643453212D;
            //
            // xrTableCellTotalIncome
            //
            this.xrTableCellTotalIncome.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellTotalIncome.Name    = "xrTableCellTotalIncome";
            this.xrTableCellTotalIncome.StylePriority.UseBorders       = false;
            this.xrTableCellTotalIncome.StylePriority.UseTextAlignment = false;
            this.xrTableCellTotalIncome.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellTotalIncome.Weight        = 0.38643787207413272D;
            //
            // xrTableCellInsurrance
            //
            this.xrTableCellInsurrance.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellInsurrance.Name    = "xrTableCellInsurrance";
            this.xrTableCellInsurrance.StylePriority.UseBorders       = false;
            this.xrTableCellInsurrance.StylePriority.UseTextAlignment = false;
            this.xrTableCellInsurrance.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellInsurrance.Weight        = 0.56108069673743777D;
            //
            // xrTableCellPersonalIncomeTax
            //
            this.xrTableCellPersonalIncomeTax.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellPersonalIncomeTax.Name    = "xrTableCellPersonalIncomeTax";
            this.xrTableCellPersonalIncomeTax.StylePriority.UseBorders       = false;
            this.xrTableCellPersonalIncomeTax.StylePriority.UseTextAlignment = false;
            this.xrTableCellPersonalIncomeTax.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellPersonalIncomeTax.Weight        = 0.60395891750561881D;
            //
            // xrTableCellOtherIncome
            //
            this.xrTableCellOtherIncome.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellOtherIncome.Name    = "xrTableCellOtherIncome";
            this.xrTableCellOtherIncome.StylePriority.UseBorders       = false;
            this.xrTableCellOtherIncome.StylePriority.UseTextAlignment = false;
            this.xrTableCellOtherIncome.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellOtherIncome.Weight        = 0.45418327938471686D;
            //
            // xrTableCellTheWorkCost
            //
            this.xrTableCellTheWorkCost.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTableCellTheWorkCost.Name = "xrTableCellTheWorkCost";
            this.xrTableCellTheWorkCost.StylePriority.UseBorders       = false;
            this.xrTableCellTheWorkCost.StylePriority.UseTextAlignment = false;
            this.xrTableCellTheWorkCost.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCellTheWorkCost.Weight        = 0.45113177779529157D;
            //
            // rp_SalaryByMonth
            //
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
                this.Detail,
                this.TopMargin,
                this.BottomMargin,
                this.ReportHeader,
                this.PageHeader,
                this.ReportFooter
            });
            this.BorderColor = System.Drawing.Color.DarkGray;
            this.Font        = new System.Drawing.Font("Times New Roman", 5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(1)), true);
            this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
                this.formattingRule1
            });
            this.Margins       = new System.Drawing.Printing.Margins(12, 12, 15, 0);
            this.PageHeight    = 1169;
            this.PageWidth     = 827;
            this.PaperKind     = System.Drawing.Printing.PaperKind.A4;
            this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.Version       = "15.1";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblReportHeader)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblPageHeader)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.tblDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
        }
Ejemplo n.º 11
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
     this.TableHeader    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrTableCell5   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrTableCell1   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell7   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrPageInfo1    = new DevExpress.XtraReports.UI.XRPageInfo();
     this.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.FooterLine     = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrLine2        = new DevExpress.XtraReports.UI.XRLine();
     this.Lines          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Header         = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrPageInfo3    = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2    = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrLabel22      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel23      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel21      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16      = new DevExpress.XtraReports.UI.XRLabel();
     this.OddStyle       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageFooter     = new DevExpress.XtraReports.UI.PageFooterBand();
     this.EvenStyle      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupHeader2   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel11      = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter   = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel15      = new DevExpress.XtraReports.UI.XRLabel();
     this.dsNHIFReturns1 = new Master.Class.DataSet.dsNHIFReturns();
     this.sprptNHIFReturnsTableAdapter = new Master.Class.DataSet.dsNHIFReturnsTableAdapters.sprptNHIFReturnsTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsNHIFReturns1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TableHeader
     //
     this.TableHeader.BackColor     = System.Drawing.Color.White;
     this.TableHeader.Font          = new System.Drawing.Font("Microsoft Sans Serif", 18F, System.Drawing.FontStyle.Bold);
     this.TableHeader.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(98)))), ((int)(((byte)(107)))), ((int)(((byte)(115)))));
     this.TableHeader.Name          = "TableHeader";
     this.TableHeader.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TableHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableCell5
     //
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.EmpName")
     });
     this.xrTableCell5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseFont          = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell5.Weight        = 1.68126807426127D;
     this.xrTableCell5.WordWrap      = false;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                    | DevExpress.XtraPrinting.BorderSide.Right)));
     this.xrTable2.EvenStyleName = "EvenStyle";
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.OddStyleName  = "OddStyle";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(673.9998F, 16.66667F);
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseFont    = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell8,
         this.xrTableCell13,
         this.xrTableCell15
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.PayrollNo")
     });
     this.xrTableCell4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseFont          = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell4.Weight        = 0.7867089598285D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.IDNo")
     });
     this.xrTableCell8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseFont          = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell8.Weight        = 0.589282076774097D;
     this.xrTableCell8.WordWrap      = false;
     //
     // xrTableCell13
     //
     this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.NHIFNo")
     });
     this.xrTableCell13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell13.Name = "xrTableCell13";
     this.xrTableCell13.StylePriority.UseFont          = false;
     this.xrTableCell13.StylePriority.UseTextAlignment = false;
     this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell13.Weight        = 0.547682829149039D;
     this.xrTableCell13.WordWrap      = false;
     //
     // xrTableCell15
     //
     this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.Amount", "{0:n2}")
     });
     this.xrTableCell15.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell15.Name = "xrTableCell15";
     this.xrTableCell15.StylePriority.UseFont          = false;
     this.xrTableCell15.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString          = "{0:#}";
     this.xrTableCell15.Summary       = xrSummary1;
     this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell15.Weight        = 0.855616091483507D;
     this.xrTableCell15.WordWrap      = false;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Font                           = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell2.ForeColor                      = System.Drawing.Color.Black;
     this.xrTableCell2.Name                           = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseFont          = false;
     this.xrTableCell2.StylePriority.UseForeColor     = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text                           = "NAMES";
     this.xrTableCell2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight                         = 1.17070303076375D;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 0F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Font                           = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell1.ForeColor                      = System.Drawing.Color.Black;
     this.xrTableCell1.Name                           = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseFont          = false;
     this.xrTableCell1.StylePriority.UseForeColor     = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text                           = "PAYROLLNO";
     this.xrTableCell1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight                         = 0.547802522655179D;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell7,
         this.xrTableCell9,
         this.xrTableCell11
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Font                           = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell7.ForeColor                      = System.Drawing.Color.Black;
     this.xrTableCell7.Name                           = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseFont          = false;
     this.xrTableCell7.StylePriority.UseForeColor     = false;
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text                           = "IDNO";
     this.xrTableCell7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight                         = 0.410329859845624D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Font                           = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell9.ForeColor                      = System.Drawing.Color.Black;
     this.xrTableCell9.Name                           = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseFont          = false;
     this.xrTableCell9.StylePriority.UseForeColor     = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text                           = "NHIF NO";
     this.xrTableCell9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight                         = 0.38136368102811D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseFont          = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "AMOUNT";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 0.59578392275037D;
     //
     // xrTable1
     //
     this.xrTable1.BackColor = System.Drawing.Color.White;
     this.xrTable1.Borders   = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                      | DevExpress.XtraPrinting.BorderSide.Right)));
     this.xrTable1.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable1.ForeColor     = System.Drawing.Color.Black;
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF     = new System.Drawing.SizeF(673.9998F, 25F);
     this.xrTable1.StyleName = "TableHeader";
     this.xrTable1.StylePriority.UseBorders   = false;
     this.xrTable1.StylePriority.UseFont      = false;
     this.xrTable1.StylePriority.UseForeColor = false;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Format        = "Page {0} of {1}";
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(0.0001220703F, 2.333242F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(673.9999F, 23F);
     this.xrPageInfo1.StyleName     = "EvenStyle";
     this.xrPageInfo1.StylePriority.UseTextAlignment = false;
     this.xrPageInfo1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.GroupHeader1.HeightF         = 25F;
     this.GroupHeader1.KeepTogether    = true;
     this.GroupHeader1.Level           = 1;
     this.GroupHeader1.Name            = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage = true;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.EvenStyleName = "EvenStyle";
     this.Detail.HeightF       = 16.66667F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "OddStyle";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // FooterLine
     //
     this.FooterLine.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(43)))), ((int)(((byte)(24)))));
     this.FooterLine.Name      = "FooterLine";
     this.FooterLine.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 0F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(673.9999F, 2.333242F);
     this.xrLine2.StyleName     = "FooterLine";
     //
     // Lines
     //
     this.Lines.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(43)))), ((int)(((byte)(24)))));
     this.Lines.Name      = "Lines";
     this.Lines.Padding   = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // Header
     //
     this.Header.Font          = new System.Drawing.Font("Microsoft Sans Serif", 48F);
     this.Header.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(153)))), ((int)(((byte)(173)))), ((int)(((byte)(191)))));
     this.Header.Name          = "Header";
     this.Header.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Header.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo3,
         this.xrPageInfo2,
         this.xrLabel22,
         this.xrLabel23,
         this.xrLabel20,
         this.xrLabel21,
         this.xrLabel18,
         this.xrLabel17,
         this.xrLabel3,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6,
         this.xrLabel7,
         this.xrLabel1,
         this.xrLabel13,
         this.xrLabel14,
         this.xrLabel19,
         this.xrLabel16
     });
     this.TopMargin.HeightF       = 255.9167F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPageInfo3
     //
     this.xrPageInfo3.Format        = "{0:dddd, MMMM d, yyyy hh:mm:ss tt}";
     this.xrPageInfo3.LocationFloat = new DevExpress.Utils.PointFloat(393.8748F, 10.00001F);
     this.xrPageInfo3.Name          = "xrPageInfo3";
     this.xrPageInfo3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo3.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo3.SizeF         = new System.Drawing.SizeF(280.1252F, 23F);
     this.xrPageInfo3.StylePriority.UseTextAlignment = false;
     this.xrPageInfo3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 10.00001F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo      = DevExpress.XtraPrinting.PageInfo.UserName;
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(289.5833F, 23F);
     //
     // xrLabel22
     //
     this.xrLabel22.BackColor     = System.Drawing.Color.Transparent;
     this.xrLabel22.Font          = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel22.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel22.LocationFloat = new DevExpress.Utils.PointFloat(444.2501F, 94.45817F);
     this.xrLabel22.Name          = "xrLabel22";
     this.xrLabel22.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.SizeF         = new System.Drawing.SizeF(229.7499F, 30.29169F);
     this.xrLabel22.StyleName     = "Header";
     this.xrLabel22.StylePriority.UseBackColor     = false;
     this.xrLabel22.StylePriority.UseFont          = false;
     this.xrLabel22.StylePriority.UseForeColor     = false;
     this.xrLabel22.StylePriority.UseTextAlignment = false;
     this.xrLabel22.Text          = "N.H.I.F. Pyrall";
     this.xrLabel22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel23
     //
     this.xrLabel23.BackColor     = System.Drawing.Color.Transparent;
     this.xrLabel23.Font          = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel23.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel23.LocationFloat = new DevExpress.Utils.PointFloat(444.2501F, 124.7499F);
     this.xrLabel23.Name          = "xrLabel23";
     this.xrLabel23.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.SizeF         = new System.Drawing.SizeF(229.7498F, 30.29167F);
     this.xrLabel23.StyleName     = "Header";
     this.xrLabel23.StylePriority.UseBackColor     = false;
     this.xrLabel23.StylePriority.UseFont          = false;
     this.xrLabel23.StylePriority.UseForeColor     = false;
     this.xrLabel23.StylePriority.UseTextAlignment = false;
     this.xrLabel23.Text          = "Deductions Summary";
     this.xrLabel23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel20
     //
     this.xrLabel20.BackColor = System.Drawing.Color.Transparent;
     this.xrLabel20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.Pmonth", "{0:MMMM}")
     });
     this.xrLabel20.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel20.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(444.2501F, 225.6249F);
     this.xrLabel20.Name          = "xrLabel20";
     this.xrLabel20.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF         = new System.Drawing.SizeF(84.4581F, 30.29169F);
     this.xrLabel20.StyleName     = "Header";
     this.xrLabel20.StylePriority.UseBackColor     = false;
     this.xrLabel20.StylePriority.UseFont          = false;
     this.xrLabel20.StylePriority.UseForeColor     = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel21
     //
     this.xrLabel21.BackColor = System.Drawing.Color.Transparent;
     this.xrLabel21.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.Pmonth", "{0:yyyy}")
     });
     this.xrLabel21.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel21.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel21.LocationFloat = new DevExpress.Utils.PointFloat(558.2085F, 225.6249F);
     this.xrLabel21.Name          = "xrLabel21";
     this.xrLabel21.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.SizeF         = new System.Drawing.SizeF(115.7914F, 30.29169F);
     this.xrLabel21.StyleName     = "Header";
     this.xrLabel21.StylePriority.UseBackColor     = false;
     this.xrLabel21.StylePriority.UseFont          = false;
     this.xrLabel21.StylePriority.UseForeColor     = false;
     this.xrLabel21.StylePriority.UseTextAlignment = false;
     this.xrLabel21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel18
     //
     this.xrLabel18.BackColor     = System.Drawing.Color.Transparent;
     this.xrLabel18.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel18.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(444.2501F, 195.3333F);
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(84.45813F, 30.29169F);
     this.xrLabel18.StyleName     = "Header";
     this.xrLabel18.StylePriority.UseBackColor     = false;
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseForeColor     = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text          = "Month";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel17
     //
     this.xrLabel17.BackColor     = System.Drawing.Color.Transparent;
     this.xrLabel17.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel17.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(558.2085F, 195.3333F);
     this.xrLabel17.Name          = "xrLabel17";
     this.xrLabel17.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF         = new System.Drawing.SizeF(115.7915F, 30.29169F);
     this.xrLabel17.StyleName     = "Header";
     this.xrLabel17.StylePriority.UseBackColor     = false;
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseForeColor     = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text          = "YEAR";
     this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel3
     //
     this.xrLabel3.BackColor     = System.Drawing.Color.Transparent;
     this.xrLabel3.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 94.45818F);
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(152.0417F, 30.29169F);
     this.xrLabel3.StyleName     = "Header";
     this.xrLabel3.StylePriority.UseBackColor     = false;
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseForeColor     = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text          = "EMPLOYER KRA PIN:";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.BackColor     = System.Drawing.Color.Transparent;
     this.xrLabel4.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 124.7499F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(152.0417F, 30.29167F);
     this.xrLabel4.StyleName     = "Header";
     this.xrLabel4.StylePriority.UseBackColor     = false;
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseForeColor     = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "EMPLOYER NHIF NO:";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.BackColor     = System.Drawing.Color.Transparent;
     this.xrLabel5.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 155.0415F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(152.0417F, 30.29168F);
     this.xrLabel5.StyleName     = "Header";
     this.xrLabel5.StylePriority.UseBackColor     = false;
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseForeColor     = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text          = "EMPLOYER  NAME:";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.BackColor     = System.Drawing.Color.Transparent;
     this.xrLabel6.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 185.3332F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(149.1248F, 30.2917F);
     this.xrLabel6.StyleName     = "Header";
     this.xrLabel6.StylePriority.UseBackColor     = false;
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseForeColor     = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text          = "TOTAL  INCOME:";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.BackColor     = System.Drawing.Color.Transparent;
     this.xrLabel7.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 215.625F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(149.1246F, 30.2917F);
     this.xrLabel7.StyleName     = "Header";
     this.xrLabel7.StylePriority.UseBackColor     = false;
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseForeColor     = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text          = "TOTAL  AMOUNT:";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.BackColor = System.Drawing.Color.Transparent;
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.TotalAmount", "{0:#}")
     });
     this.xrLabel1.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(152.0417F, 215.625F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(259.4582F, 30.2917F);
     this.xrLabel1.StyleName     = "Header";
     this.xrLabel1.StylePriority.UseBackColor     = false;
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel13
     //
     this.xrLabel13.BackColor = System.Drawing.Color.Transparent;
     this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.CompKRAPin")
     });
     this.xrLabel13.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel13.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(152.0419F, 94.45818F);
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(259.4581F, 30.29169F);
     this.xrLabel13.StyleName     = "Header";
     this.xrLabel13.StylePriority.UseBackColor     = false;
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseForeColor     = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel14
     //
     this.xrLabel14.BackColor = System.Drawing.Color.Transparent;
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.CompNHIFNo")
     });
     this.xrLabel14.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel14.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel14.LocationFloat = new DevExpress.Utils.PointFloat(152.0419F, 124.7499F);
     this.xrLabel14.Name          = "xrLabel14";
     this.xrLabel14.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF         = new System.Drawing.SizeF(259.4581F, 30.29167F);
     this.xrLabel14.StyleName     = "Header";
     this.xrLabel14.StylePriority.UseBackColor     = false;
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseForeColor     = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel19
     //
     this.xrLabel19.BackColor = System.Drawing.Color.Transparent;
     this.xrLabel19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.CompName")
     });
     this.xrLabel19.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel19.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(152.0419F, 155.0415F);
     this.xrLabel19.Name          = "xrLabel19";
     this.xrLabel19.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF         = new System.Drawing.SizeF(259.4581F, 30.29169F);
     this.xrLabel19.StyleName     = "Header";
     this.xrLabel19.StylePriority.UseBackColor     = false;
     this.xrLabel19.StylePriority.UseFont          = false;
     this.xrLabel19.StylePriority.UseForeColor     = false;
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel16
     //
     this.xrLabel16.BackColor = System.Drawing.Color.Transparent;
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.TotalIncome", "{0:#}")
     });
     this.xrLabel16.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel16.ForeColor     = System.Drawing.Color.Black;
     this.xrLabel16.LocationFloat = new DevExpress.Utils.PointFloat(152.0419F, 185.3333F);
     this.xrLabel16.Name          = "xrLabel16";
     this.xrLabel16.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF         = new System.Drawing.SizeF(259.4581F, 30.29169F);
     this.xrLabel16.StyleName     = "Header";
     this.xrLabel16.StylePriority.UseBackColor     = false;
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseForeColor     = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // OddStyle
     //
     this.OddStyle.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(232)))), ((int)(((byte)(242)))));
     this.OddStyle.Font          = new System.Drawing.Font("Calibri", 9.75F);
     this.OddStyle.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(13)))), ((int)(((byte)(13)))), ((int)(((byte)(13)))));
     this.OddStyle.Name          = "OddStyle";
     this.OddStyle.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.OddStyle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine2,
         this.xrPageInfo1
     });
     this.PageFooter.HeightF = 52.08333F;
     this.PageFooter.Name    = "PageFooter";
     //
     // EvenStyle
     //
     this.EvenStyle.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.EvenStyle.Font          = new System.Drawing.Font("Calibri", 9.75F);
     this.EvenStyle.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(13)))), ((int)(((byte)(13)))), ((int)(((byte)(13)))));
     this.EvenStyle.Name          = "EvenStyle";
     this.EvenStyle.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.EvenStyle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel11
     });
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("ContrPeriod", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader2.HeightF = 15.625F;
     this.GroupHeader2.Name    = "GroupHeader2";
     //
     // xrLabel11
     //
     this.xrLabel11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.ContrPeriod", "{0:#}"),
         new DevExpress.XtraReports.UI.XRBinding("Bookmark", null, "sprptNHIFReturns.ContrPeriod")
     });
     this.xrLabel11.Font          = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel11.ForeColor     = System.Drawing.Color.White;
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(0.0001220703F, 0F);
     this.xrLabel11.Name          = "xrLabel11";
     this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF         = new System.Drawing.SizeF(673.9999F, 13.95833F);
     this.xrLabel11.StyleName     = "Header";
     this.xrLabel11.StylePriority.UseBackColor     = false;
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseForeColor     = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrLabel11.Visible       = false;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15
     });
     this.ReportFooter.HeightF = 25F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // xrLabel15
     //
     this.xrLabel15.BackColor = System.Drawing.Color.Transparent;
     this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sprptNHIFReturns.Amount")
     });
     this.xrLabel15.Font          = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline);
     this.xrLabel15.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(544.7145F, 0F);
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(129.2855F, 20.91672F);
     this.xrLabel15.StyleName     = "Header";
     this.xrLabel15.StylePriority.UseBackColor     = false;
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseForeColor     = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     xrSummary2.FormatString      = "{0:n2}";
     xrSummary2.Running           = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrLabel15.Summary       = xrSummary2;
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // dsNHIFReturns1
     //
     this.dsNHIFReturns1.DataSetName             = "dsNHIFReturns";
     this.dsNHIFReturns1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // sprptNHIFReturnsTableAdapter
     //
     this.sprptNHIFReturnsTableAdapter.ClearBeforeFill = true;
     //
     // rptNHIFReturns
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageFooter,
         this.GroupHeader1,
         this.GroupHeader2,
         this.ReportFooter
     });
     this.DataAdapter = this.sprptNHIFReturnsTableAdapter;
     this.DataMember  = "sprptNHIFReturns";
     this.DataSource  = this.dsNHIFReturns1;
     this.Margins     = new System.Drawing.Printing.Margins(68, 85, 256, 0);
     this.PageHeight  = 1169;
     this.PageWidth   = 827;
     this.PaperKind   = System.Drawing.Printing.PaperKind.A4;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Header,
         this.TableHeader,
         this.OddStyle,
         this.EvenStyle,
         this.Lines,
         this.FooterLine
     });
     this.Version = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsNHIFReturns1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 12
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(KKTheoLoaiMH));
     DevExpress.XtraReports.UI.XRSummary            xrSummary1       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings2 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary4 = new DevExpress.XtraReports.UI.XRSummary();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrTableCell9     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3     = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell10    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell5     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8     = new DevExpress.XtraReports.UI.XRTableCell();
     this.White            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.LightBlue        = new DevExpress.XtraReports.UI.XRControlStyle();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.LavenderStyle    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.TableHeaderStyle = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TableStyle       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.subtotal         = new DevExpress.XtraReports.UI.CalculatedField();
     this.makho            = new DevExpress.XtraReports.Parameters.Parameter();
     this.maloaiMH         = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6         = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter2     = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel7         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1          = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel8         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9         = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "WebQLKhoDuoc";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name           = "GetKKbyLoaiMH()";
     storedProcQuery1.StoredProcName = "GetKKbyLoaiMH";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().SLHangTamN")
     });
     this.xrTableCell9.Dpi    = 100F;
     this.xrTableCell9.Name   = "xrTableCell9";
     this.xrTableCell9.Text   = "xrTableCell9";
     this.xrTableCell9.Weight = 1.0298550902674009D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi    = 100F;
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Số lượng";
     this.xrTableCell3.Weight = 1.479949875166795D;
     //
     // TopMargin
     //
     this.TopMargin.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.TopMargin.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.TopMargin.Dpi         = 100F;
     this.TopMargin.HeightF     = 47F;
     this.TopMargin.Name        = "TopMargin";
     this.TopMargin.Padding     = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseBackColor   = false;
     this.TopMargin.StylePriority.UseBorderColor = false;
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable1
     //
     this.xrTable1.Dpi           = 100F;
     this.xrTable1.EvenStyleName = "LavenderStyle";
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 18F);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.OddStyleName  = "White";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(788.9999F, 52.75109F);
     this.xrTable1.StylePriority.UseFont          = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell10,
         this.xrTableCell6,
         this.xrTableCell9,
         this.xrTableCell1,
         this.xrTableCell2
     });
     this.xrTableRow1.Dpi    = 100F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Dpi     = 100F;
     this.xrTableCell10.Name    = "xrTableCell10";
     xrSummary1.Func            = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running         = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell10.Summary = xrSummary1;
     this.xrTableCell10.Text    = "xrTableCell10";
     this.xrTableCell10.Weight  = 0.57564559008675775D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().TenMatHang")
     });
     this.xrTableCell6.Dpi    = 100F;
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "xrTableCell6";
     this.xrTableCell6.Weight = 2.4295301845985255D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().Gia", "{0:#,#}")
     });
     this.xrTableCell1.Dpi    = 100F;
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "text";
     this.xrTableCell1.Weight = 1.4754742266516385D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().DonViTinh")
     });
     this.xrTableCell2.Dpi    = 100F;
     this.xrTableCell2.Name   = "xrTableCell2";
     this.xrTableCell2.Text   = "xrTableCell8";
     this.xrTableCell2.Weight = 0.95732419891303189D;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell5,
         this.xrTableCell4,
         this.xrTableCell3,
         this.xrTableCell7,
         this.xrTableCell8
     });
     this.xrTableRow2.Dpi    = 100F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Dpi    = 100F;
     this.xrTableCell5.Name   = "xrTableCell5";
     this.xrTableCell5.Text   = "STT";
     this.xrTableCell5.Weight = 0.827229472096312D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Dpi    = 100F;
     this.xrTableCell4.Name   = "xrTableCell4";
     this.xrTableCell4.Text   = "Tên mặt hàng";
     this.xrTableCell4.Weight = 3.491347523794337D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Dpi                   = 100F;
     this.xrTableCell7.Font                  = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold);
     this.xrTableCell7.Name                  = "xrTableCell7";
     this.xrTableCell7.StyleName             = "TableHeaderStyle";
     this.xrTableCell7.StylePriority.UseFont = false;
     this.xrTableCell7.Text                  = "Giá";
     this.xrTableCell7.Weight                = 2.12032501334546D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Dpi  = 100F;
     this.xrTableCell8.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold);
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseFont = false;
     this.xrTableCell8.Text   = "ĐVT";
     this.xrTableCell8.Weight = 1.3757190237016119D;
     //
     // White
     //
     this.White.BackColor   = System.Drawing.Color.White;
     this.White.BorderWidth = 0F;
     this.White.Font        = new System.Drawing.Font("Segoe UI", 9.75F);
     this.White.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
     this.White.Name        = "White";
     this.White.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // PageHeader
     //
     this.PageHeader.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageHeader.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrLabel1
     });
     this.PageHeader.Dpi     = 100F;
     this.PageHeader.HeightF = 107.2917F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseBackColor   = false;
     this.PageHeader.StylePriority.UseBorderColor = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi                            = 100F;
     this.xrLabel2.Font                           = new System.Drawing.Font("Sitka Text", 14F, System.Drawing.FontStyle.Italic);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999998F, 71.58337F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(768.9998F, 19.45835F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "( Nhóm hàng [TenLoaiMH] và [TenKho] )";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.BorderWidth                    = 0F;
     this.xrLabel1.Dpi                            = 100F;
     this.xrLabel1.Font                           = new System.Drawing.Font("Sitka Text", 36F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(9.999998F, 0F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(768.9999F, 60.75001F);
     this.xrLabel1.StyleName                      = "TableStyle";
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "KIỂM KÊ THEO NHÓM HÀNG";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.BottomCenter;
     //
     // GroupHeader1
     //
     this.GroupHeader1.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupHeader1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader1.Dpi = 100F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF         = 44.84599F;
     this.GroupHeader1.Name            = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage = true;
     //
     // xrTable2
     //
     this.xrTable2.BackColor     = System.Drawing.Color.White;
     this.xrTable2.Dpi           = 100F;
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold);
     this.xrTable2.ForeColor     = System.Drawing.Color.Black;
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF                          = new System.Drawing.SizeF(788.9999F, 44.84599F);
     this.xrTable2.StyleName                      = "TableHeaderStyle";
     this.xrTable2.StylePriority.UseFont          = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // PageFooter
     //
     this.PageFooter.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageFooter.Borders     = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.PageFooter.Dpi         = 100F;
     this.PageFooter.HeightF     = 17.79169F;
     this.PageFooter.Name        = "PageFooter";
     //
     // LightBlue
     //
     this.LightBlue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.LightBlue.Name      = "LightBlue";
     //
     // BottomMargin
     //
     this.BottomMargin.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.BottomMargin.BorderColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 38.5416F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // LavenderStyle
     //
     this.LavenderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(250)))));
     this.LavenderStyle.Font      = new System.Drawing.Font("Segoe UI", 9.75F);
     this.LavenderStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
     this.LavenderStyle.Name      = "LavenderStyle";
     this.LavenderStyle.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // Detail
     //
     this.Detail.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Detail.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 52.75109F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "LightBlue";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TableHeaderStyle
     //
     this.TableHeaderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.TableHeaderStyle.Font      = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Bold);
     this.TableHeaderStyle.ForeColor = System.Drawing.Color.White;
     this.TableHeaderStyle.Name      = "TableHeaderStyle";
     this.TableHeaderStyle.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // TableStyle
     //
     this.TableStyle.BackColor       = System.Drawing.Color.White;
     this.TableStyle.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(250)))));
     this.TableStyle.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.TableStyle.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.TableStyle.Font            = new System.Drawing.Font("Calibri", 36F);
     this.TableStyle.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.TableStyle.Name            = "TableStyle";
     this.TableStyle.Padding         = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // subtotal
     //
     this.subtotal.DataMember = "GetKKbyLoaiMH()";
     this.subtotal.Expression = "[][[MaLoaiMH]=[^.MaLoaiMH]].Sum([SLHangTamN]*[Gia])";
     this.subtotal.Name       = "subtotal";
     //
     // makho
     //
     this.makho.Description = "Tên kho:";
     dynamicListLookUpSettings1.DataAdapter   = null;
     dynamicListLookUpSettings1.DataMember    = "GetKKbyLoaiMH()";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "TenKho";
     dynamicListLookUpSettings1.FilterString  = null;
     dynamicListLookUpSettings1.ValueMember   = "MaKho";
     this.makho.LookUpSettings = dynamicListLookUpSettings1;
     this.makho.Name           = "makho";
     this.makho.Type           = typeof(int);
     this.makho.ValueInfo      = "0";
     //
     // maloaiMH
     //
     this.maloaiMH.Description = "Tên loại mặt hàng";
     dynamicListLookUpSettings2.DataAdapter   = null;
     dynamicListLookUpSettings2.DataMember    = "GetKKbyLoaiMH()";
     dynamicListLookUpSettings2.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings2.DisplayMember = "TenLoaiMH";
     dynamicListLookUpSettings2.FilterString  = null;
     dynamicListLookUpSettings2.ValueMember   = "MaLoaiMH";
     this.maloaiMH.LookUpSettings             = dynamicListLookUpSettings2;
     this.maloaiMH.Name      = "maloaiMH";
     this.maloaiMH.Type      = typeof(int);
     this.maloaiMH.ValueInfo = "0";
     //
     // xrLabel4
     //
     this.xrLabel4.Dpi                   = 100F;
     this.xrLabel4.Font                  = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat         = new DevExpress.Utils.PointFloat(0.000222524F, 125.0662F);
     this.xrLabel4.Name                  = "xrLabel4";
     this.xrLabel4.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                 = new System.Drawing.SizeF(127.0833F, 33.68378F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text                  = "Tổng giá trị: ";
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().subtotal", "{0:#,#} VNĐ")
     });
     this.xrLabel3.Dpi                   = 100F;
     this.xrLabel3.Font                  = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(127.0836F, 125.0662F);
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(190.6693F, 33.68378F);
     this.xrLabel3.StylePriority.UseFont = false;
     xrSummary2.FormatString             = "{0:#.00}";
     this.xrLabel3.Summary               = xrSummary2;
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().MaMatHang")
     });
     this.xrLabel6.Dpi           = 100F;
     this.xrLabel6.Font          = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(138.5419F, 22.99999F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.Scripts.OnSummaryGetResult = "xrLabel6_SummaryGetResult";
     this.xrLabel6.SizeF = new System.Drawing.SizeF(424.0027F, 33.68378F);
     this.xrLabel6.StylePriority.UseFont = false;
     xrSummary3.FormatString             = "{0}";
     xrSummary3.Func       = DevExpress.XtraReports.UI.SummaryFunc.Count;
     xrSummary3.Running    = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrLabel6.Summary = xrSummary3;
     //
     // GroupFooter2
     //
     this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLine1,
         this.xrLabel6,
         this.xrLabel3,
         this.xrLabel4
     });
     this.GroupFooter2.Dpi     = 100F;
     this.GroupFooter2.HeightF = 168.75F;
     this.GroupFooter2.Level   = 1;
     this.GroupFooter2.Name    = "GroupFooter2";
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetKKbyLoaiMH().SLHangTamN")
     });
     this.xrLabel7.Dpi           = 100F;
     this.xrLabel7.Font          = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(254.1667F, 73.95834F);
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.Scripts.OnSummaryGetResult = "xrLabel6_SummaryGetResult";
     this.xrLabel7.SizeF = new System.Drawing.SizeF(238.0601F, 33.68378F);
     this.xrLabel7.StylePriority.UseFont = false;
     xrSummary4.FormatString             = "{0}";
     xrSummary4.Running    = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrLabel7.Summary = xrSummary4;
     //
     // xrLine1
     //
     this.xrLine1.Dpi           = 100F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(7.947286E-06F, 0F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(788.9998F, 23F);
     //
     // xrLabel8
     //
     this.xrLabel8.Dpi                   = 100F;
     this.xrLabel8.Font                  = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat         = new DevExpress.Utils.PointFloat(0.000222524F, 22.99999F);
     this.xrLabel8.Name                  = "xrLabel8";
     this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel8.SizeF                 = new System.Drawing.SizeF(138.5417F, 33.68378F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text                  = "Số mặt hàng: ";
     //
     // xrLabel9
     //
     this.xrLabel9.Dpi                   = 100F;
     this.xrLabel9.Font                  = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat         = new DevExpress.Utils.PointFloat(0.000222524F, 73.95834F);
     this.xrLabel9.Name                  = "xrLabel9";
     this.xrLabel9.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel9.SizeF                 = new System.Drawing.SizeF(254.1664F, 33.68378F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.Text                  = "Tổng số lượng mặt hàng:";
     //
     // KKTheoLoaiMH
     //
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeader1,
         this.PageHeader,
         this.PageFooter,
         this.GroupFooter2
     });
     this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.subtotal
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember   = "GetKKbyLoaiMH()";
     this.DataSource   = this.sqlDataSource1;
     this.FilterString = "[MaKho] = ?makho And [MaLoaiMH] = ?maloaiMH";
     this.Font         = new System.Drawing.Font("Arial Narrow", 9.75F);
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Margins = new System.Drawing.Printing.Margins(10, 51, 47, 39);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.makho,
         this.maloaiMH
     });
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.LightBlue,
         this.TableHeaderStyle,
         this.TableStyle,
         this.White,
         this.LavenderStyle
     });
     this.Version = "16.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 13
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "XtraReport1.resx";

        System.Resources.ResourceManager resources = global::Resources.XtraReport1.ResourceManager;
        this.components = new System.ComponentModel.Container();
        DevExpress.DataAccess.Sql.SelectQuery        selectQuery1        = new DevExpress.DataAccess.Sql.SelectQuery();
        DevExpress.DataAccess.Sql.AllColumns         allColumns1         = new DevExpress.DataAccess.Sql.AllColumns();
        DevExpress.DataAccess.Sql.Table              table1              = new DevExpress.DataAccess.Sql.Table();
        DevExpress.DataAccess.Sql.QueryParameter     queryParameter1     = new DevExpress.DataAccess.Sql.QueryParameter();
        DevExpress.DataAccess.Sql.Join               join1               = new DevExpress.DataAccess.Sql.Join();
        DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
        DevExpress.DataAccess.Sql.Table              table2              = new DevExpress.DataAccess.Sql.Table();
        DevExpress.DataAccess.Sql.MasterDetailInfo   masterDetailInfo1   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
        DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
        this.Detail                   = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable1                 = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell5             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell6             = new DevExpress.XtraReports.UI.XRTableCell();
        this.TopMargin                = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin             = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.xrPageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
        this.xrPageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
        this.sqlDataSource1           = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
        this.reportHeaderBand1        = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.xrLabel1                 = new DevExpress.XtraReports.UI.XRLabel();
        this.detailReportBand1        = new DevExpress.XtraReports.UI.DetailReportBand();
        this.groupHeaderBand1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
        this.xrPanel1                 = new DevExpress.XtraReports.UI.XRPanel();
        this.xrTable2                 = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow3              = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell9             = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell10            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell11            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell12            = new DevExpress.XtraReports.UI.XRTableCell();
        this.detailBand1              = new DevExpress.XtraReports.UI.DetailBand();
        this.xrTable3                 = new DevExpress.XtraReports.UI.XRTable();
        this.xrTableRow4              = new DevExpress.XtraReports.UI.XRTableRow();
        this.xrTableCell13            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell14            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell15            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell16            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell17            = new DevExpress.XtraReports.UI.XRTableCell();
        this.xrTableCell18            = new DevExpress.XtraReports.UI.XRTableCell();
        this.Title                    = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailCaption1           = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailData1              = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailCaption3           = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailData3              = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailData3_Odd          = new DevExpress.XtraReports.UI.XRControlStyle();
        this.DetailCaptionBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
        this.PageInfo                 = new DevExpress.XtraReports.UI.XRControlStyle();
        this.id_us                    = new DevExpress.XtraReports.Parameters.Parameter();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable1
        });
        this.Detail.HeightF       = 56F;
        this.Detail.KeepTogether  = true;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrTable1
        //
        this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable1.Name          = "xrTable1";
        this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow1,
            this.xrTableRow2
        });
        this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 56F);
        //
        // xrTableRow1
        //
        this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell1,
            this.xrTableCell2,
            this.xrTableCell3
        });
        this.xrTableRow1.Name   = "xrTableRow1";
        this.xrTableRow1.Weight = 0.5D;
        //
        // xrTableCell1
        //
        this.xrTableCell1.Borders   = DevExpress.XtraPrinting.BorderSide.None;
        this.xrTableCell1.Name      = "xrTableCell1";
        this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell1.StyleName = "DetailCaption1";
        this.xrTableCell1.StylePriority.UseBorders       = false;
        this.xrTableCell1.StylePriority.UseTextAlignment = false;
        this.xrTableCell1.Text          = "id user";
        this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell1.Weight        = 0.28735630915715143D;
        //
        // xrTableCell2
        //
        this.xrTableCell2.Name      = "xrTableCell2";
        this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell2.StyleName = "DetailCaption1";
        this.xrTableCell2.StylePriority.UseTextAlignment = false;
        this.xrTableCell2.Text          = "id building";
        this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell2.Weight        = 0.4032183837890625D;
        //
        // xrTableCell3
        //
        this.xrTableCell3.Name      = "xrTableCell3";
        this.xrTableCell3.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell3.StyleName = "DetailCaption1";
        this.xrTableCell3.StylePriority.UseTextAlignment = false;
        this.xrTableCell3.Text          = "id rules";
        this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell3.Weight        = 0.30942528357872595D;
        //
        // xrTableRow2
        //
        this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell4,
            this.xrTableCell5,
            this.xrTableCell6
        });
        this.xrTableRow2.Name   = "xrTableRow2";
        this.xrTableRow2.Weight = 0.5D;
        //
        // xrTableCell4
        //
        this.xrTableCell4.Borders = DevExpress.XtraPrinting.BorderSide.None;
        this.xrTableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[id_user]")
        });
        this.xrTableCell4.Name      = "xrTableCell4";
        this.xrTableCell4.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell4.StyleName = "DetailData1";
        this.xrTableCell4.StylePriority.UseBorders       = false;
        this.xrTableCell4.StylePriority.UseTextAlignment = false;
        this.xrTableCell4.Text          = "xrTableCell4";
        this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell4.Weight        = 0.28735630915715143D;
        //
        // xrTableCell5
        //
        this.xrTableCell5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[id_building]")
        });
        this.xrTableCell5.Name      = "xrTableCell5";
        this.xrTableCell5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell5.StyleName = "DetailData1";
        this.xrTableCell5.StylePriority.UseTextAlignment = false;
        this.xrTableCell5.Text          = "xrTableCell5";
        this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell5.Weight        = 0.4032183837890625D;
        //
        // xrTableCell6
        //
        this.xrTableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[id_rules]")
        });
        this.xrTableCell6.Name      = "xrTableCell6";
        this.xrTableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell6.StyleName = "DetailData1";
        this.xrTableCell6.StylePriority.UseTextAlignment = false;
        this.xrTableCell6.Text          = "xrTableCell6";
        this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell6.Weight        = 0.30942528357872595D;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 100F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo1,
            this.xrPageInfo2
        });
        this.BottomMargin.HeightF       = 100F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // xrPageInfo1
        //
        this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
        this.xrPageInfo1.Name          = "xrPageInfo1";
        this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
        this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
        this.xrPageInfo1.StyleName     = "PageInfo";
        //
        // xrPageInfo2
        //
        this.xrPageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(331F, 6F);
        this.xrPageInfo2.Name             = "xrPageInfo2";
        this.xrPageInfo2.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo2.SizeF            = new System.Drawing.SizeF(313F, 23F);
        this.xrPageInfo2.StyleName        = "PageInfo";
        this.xrPageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
        this.xrPageInfo2.TextFormatString = "Страница {0} из {1}";
        //
        // sqlDataSource1
        //
        this.sqlDataSource1.ConnectionName = "mysql_report";
        this.sqlDataSource1.Name           = "sqlDataSource1";
        table1.MetaSerializable            = "<Meta X=\"185\" Y=\"30\" Width=\"125\" Height=\"628\" />";
        table1.Name       = "building";
        allColumns1.Table = table1;
        selectQuery1.Columns.Add(allColumns1);
        selectQuery1.FilterString      = "[user_atributes.id_user] = ?id_us";
        selectQuery1.GroupFilterString = "";
        selectQuery1.Name     = "user_atributes";
        queryParameter1.Name  = "id_us";
        queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
        queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.id_us]", typeof(string));
        selectQuery1.Parameters.Add(queryParameter1);
        relationColumnInfo1.NestedKeyColumn = "id";
        relationColumnInfo1.ParentKeyColumn = "id_building";
        join1.KeyColumns.Add(relationColumnInfo1);
        join1.Nested            = table1;
        table2.MetaSerializable = "<Meta X=\"30\" Y=\"30\" Width=\"125\" Height=\"115\" />";
        table2.Name             = "user_atributes";
        join1.Parent            = table2;
        selectQuery1.Relations.Add(join1);
        selectQuery1.Tables.Add(table2);
        selectQuery1.Tables.Add(table1);
        this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
            selectQuery1
        });
        masterDetailInfo1.DetailQueryName   = "building";
        relationColumnInfo2.NestedKeyColumn = "id";
        relationColumnInfo2.ParentKeyColumn = "id_building";
        masterDetailInfo1.KeyColumns.Add(relationColumnInfo2);
        masterDetailInfo1.MasterQueryName = "user_atributes";
        this.sqlDataSource1.Relations.AddRange(new DevExpress.DataAccess.Sql.MasterDetailInfo[] {
            masterDetailInfo1
        });
        this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
        //
        // reportHeaderBand1
        //
        this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel1
        });
        this.reportHeaderBand1.HeightF = 60F;
        this.reportHeaderBand1.Name    = "reportHeaderBand1";
        //
        // xrLabel1
        //
        this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
        this.xrLabel1.Name          = "xrLabel1";
        this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel1.SizeF         = new System.Drawing.SizeF(638F, 26F);
        this.xrLabel1.StyleName     = "Title";
        this.xrLabel1.Text          = "xrep";
        //
        // detailReportBand1
        //
        this.detailReportBand1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.groupHeaderBand1,
            this.detailBand1
        });
        this.detailReportBand1.DataMember = "user_atributes.user_atributesbuilding";
        this.detailReportBand1.DataSource = this.sqlDataSource1;
        this.detailReportBand1.Level      = 0;
        this.detailReportBand1.Name       = "detailReportBand1";
        //
        // groupHeaderBand1
        //
        this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPanel1
        });
        this.groupHeaderBand1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
        this.groupHeaderBand1.HeightF    = 48F;
        this.groupHeaderBand1.Name       = "groupHeaderBand1";
        //
        // xrPanel1
        //
        this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable2
        });
        this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrPanel1.Name          = "xrPanel1";
        this.xrPanel1.SizeF         = new System.Drawing.SizeF(650F, 48F);
        this.xrPanel1.StyleName     = "DetailCaptionBackground3";
        //
        // xrTable2
        //
        this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 20F);
        this.xrTable2.Name          = "xrTable2";
        this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow3
        });
        this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 28F);
        //
        // xrTableRow3
        //
        this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell7,
            this.xrTableCell8,
            this.xrTableCell9,
            this.xrTableCell10,
            this.xrTableCell11,
            this.xrTableCell12
        });
        this.xrTableRow3.Name   = "xrTableRow3";
        this.xrTableRow3.Weight = 1D;
        //
        // xrTableCell7
        //
        this.xrTableCell7.Name      = "xrTableCell7";
        this.xrTableCell7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell7.StyleName = "DetailCaption3";
        this.xrTableCell7.StylePriority.UseTextAlignment = false;
        this.xrTableCell7.Text          = "id";
        this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell7.Weight        = 0.10132158719576322D;
        //
        // xrTableCell8
        //
        this.xrTableCell8.Name      = "xrTableCell8";
        this.xrTableCell8.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell8.StyleName = "DetailCaption3";
        this.xrTableCell8.Text      = "title";
        this.xrTableCell8.Weight    = 0.15418502807617188D;
        //
        // xrTableCell9
        //
        this.xrTableCell9.Name      = "xrTableCell9";
        this.xrTableCell9.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell9.StyleName = "DetailCaption3";
        this.xrTableCell9.Text      = "type";
        this.xrTableCell9.Weight    = 0.16299560546875D;
        //
        // xrTableCell10
        //
        this.xrTableCell10.Name      = "xrTableCell10";
        this.xrTableCell10.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell10.StyleName = "DetailCaption3";
        this.xrTableCell10.StylePriority.UseTextAlignment = false;
        this.xrTableCell10.Text          = "year";
        this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell10.Weight        = 0.16299560546875D;
        //
        // xrTableCell11
        //
        this.xrTableCell11.Name      = "xrTableCell11";
        this.xrTableCell11.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell11.StyleName = "DetailCaption3";
        this.xrTableCell11.StylePriority.UseTextAlignment = false;
        this.xrTableCell11.Text          = "floor";
        this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell11.Weight        = 0.17180617112379809D;
        //
        // xrTableCell12
        //
        this.xrTableCell12.Name      = "xrTableCell12";
        this.xrTableCell12.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell12.StyleName = "DetailCaption3";
        this.xrTableCell12.Text      = "address";
        this.xrTableCell12.Weight    = 0.24669604961688701D;
        //
        // detailBand1
        //
        this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrTable3
        });
        this.detailBand1.HeightF = 25F;
        this.detailBand1.Name    = "detailBand1";
        //
        // xrTable3
        //
        this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrTable3.Name          = "xrTable3";
        this.xrTable3.OddStyleName  = "DetailData3_Odd";
        this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
            this.xrTableRow4
        });
        this.xrTable3.SizeF = new System.Drawing.SizeF(650F, 25F);
        //
        // xrTableRow4
        //
        this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
            this.xrTableCell13,
            this.xrTableCell14,
            this.xrTableCell15,
            this.xrTableCell16,
            this.xrTableCell17,
            this.xrTableCell18
        });
        this.xrTableRow4.Name   = "xrTableRow4";
        this.xrTableRow4.Weight = 11.5D;
        //
        // xrTableCell13
        //
        this.xrTableCell13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[id]")
        });
        this.xrTableCell13.Name      = "xrTableCell13";
        this.xrTableCell13.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell13.StyleName = "DetailData3";
        this.xrTableCell13.StylePriority.UseTextAlignment = false;
        this.xrTableCell13.Text          = "xrTableCell13";
        this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell13.Weight        = 0.10132158719576322D;
        //
        // xrTableCell14
        //
        this.xrTableCell14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[title]")
        });
        this.xrTableCell14.Name      = "xrTableCell14";
        this.xrTableCell14.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell14.StyleName = "DetailData3";
        this.xrTableCell14.Text      = "xrTableCell14";
        this.xrTableCell14.Weight    = 0.15418501633864182D;
        //
        // xrTableCell15
        //
        this.xrTableCell15.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[type]")
        });
        this.xrTableCell15.Name      = "xrTableCell15";
        this.xrTableCell15.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell15.StyleName = "DetailData3";
        this.xrTableCell15.Text      = "xrTableCell15";
        this.xrTableCell15.Weight    = 0.16299559373121994D;
        //
        // xrTableCell16
        //
        this.xrTableCell16.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[year]")
        });
        this.xrTableCell16.Name      = "xrTableCell16";
        this.xrTableCell16.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell16.StyleName = "DetailData3";
        this.xrTableCell16.StylePriority.UseTextAlignment = false;
        this.xrTableCell16.Text          = "xrTableCell16";
        this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell16.Weight        = 0.16299559373121994D;
        //
        // xrTableCell17
        //
        this.xrTableCell17.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[floor]")
        });
        this.xrTableCell17.Name      = "xrTableCell17";
        this.xrTableCell17.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell17.StyleName = "DetailData3";
        this.xrTableCell17.StylePriority.UseTextAlignment = false;
        this.xrTableCell17.Text          = "xrTableCell17";
        this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
        this.xrTableCell17.Weight        = 0.17180615938626803D;
        //
        // xrTableCell18
        //
        this.xrTableCell18.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
            new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[address]")
        });
        this.xrTableCell18.Name      = "xrTableCell18";
        this.xrTableCell18.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrTableCell18.StyleName = "DetailData3";
        this.xrTableCell18.Text      = "xrTableCell18";
        this.xrTableCell18.Weight    = 0.24669602614182692D;
        //
        // Title
        //
        this.Title.BackColor   = System.Drawing.Color.Transparent;
        this.Title.BorderColor = System.Drawing.Color.Black;
        this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
        this.Title.BorderWidth = 1F;
        this.Title.Font        = new System.Drawing.Font("Tahoma", 14F);
        this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
        this.Title.Name        = "Title";
        //
        // DetailCaption1
        //
        this.DetailCaption1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
        this.DetailCaption1.BorderColor   = System.Drawing.Color.White;
        this.DetailCaption1.Borders       = DevExpress.XtraPrinting.BorderSide.Left;
        this.DetailCaption1.BorderWidth   = 2F;
        this.DetailCaption1.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
        this.DetailCaption1.ForeColor     = System.Drawing.Color.White;
        this.DetailCaption1.Name          = "DetailCaption1";
        this.DetailCaption1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.DetailCaption1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // DetailData1
        //
        this.DetailData1.BackColor     = System.Drawing.Color.Transparent;
        this.DetailData1.BorderColor   = System.Drawing.Color.Transparent;
        this.DetailData1.Borders       = DevExpress.XtraPrinting.BorderSide.Left;
        this.DetailData1.BorderWidth   = 2F;
        this.DetailData1.Font          = new System.Drawing.Font("Tahoma", 8F);
        this.DetailData1.ForeColor     = System.Drawing.Color.Black;
        this.DetailData1.Name          = "DetailData1";
        this.DetailData1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.DetailData1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // DetailCaption3
        //
        this.DetailCaption3.BackColor     = System.Drawing.Color.Transparent;
        this.DetailCaption3.BorderColor   = System.Drawing.Color.Transparent;
        this.DetailCaption3.Borders       = DevExpress.XtraPrinting.BorderSide.None;
        this.DetailCaption3.Font          = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
        this.DetailCaption3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
        this.DetailCaption3.Name          = "DetailCaption3";
        this.DetailCaption3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.DetailCaption3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // DetailData3
        //
        this.DetailData3.Font          = new System.Drawing.Font("Tahoma", 8F);
        this.DetailData3.ForeColor     = System.Drawing.Color.Black;
        this.DetailData3.Name          = "DetailData3";
        this.DetailData3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.DetailData3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // DetailData3_Odd
        //
        this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
        this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
        this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
        this.DetailData3_Odd.BorderWidth   = 1F;
        this.DetailData3_Odd.Font          = new System.Drawing.Font("Tahoma", 8F);
        this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
        this.DetailData3_Odd.Name          = "DetailData3_Odd";
        this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
        this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // DetailCaptionBackground3
        //
        this.DetailCaptionBackground3.BackColor   = System.Drawing.Color.Transparent;
        this.DetailCaptionBackground3.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(206)))), ((int)(((byte)(206)))));
        this.DetailCaptionBackground3.Borders     = DevExpress.XtraPrinting.BorderSide.Top;
        this.DetailCaptionBackground3.BorderWidth = 2F;
        this.DetailCaptionBackground3.Name        = "DetailCaptionBackground3";
        //
        // PageInfo
        //
        this.PageInfo.Font      = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
        this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
        this.PageInfo.Name      = "PageInfo";
        this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        //
        // id_us
        //
        this.id_us.Description = "id_us";
        this.id_us.Name        = "id_us";
        //
        // XtraReport1
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.reportHeaderBand1,
            this.detailReportBand1
        });
        this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
            this.sqlDataSource1
        });
        this.DataMember = "user_atributes";
        this.DataSource = this.sqlDataSource1;
        this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
            this.id_us
        });
        this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
            this.Title,
            this.DetailCaption1,
            this.DetailData1,
            this.DetailCaption3,
            this.DetailData3,
            this.DetailData3_Odd,
            this.DetailCaptionBackground3,
            this.PageInfo
        });
        this.Version = "17.2";
        ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
        private XtraReport CreateReport()
        {
            // Create a blank report.
            XtraReport crossTabReport = new XtraReport()
            {
                VerticalContentSplitting   = VerticalContentSplitting.Smart,
                HorizontalContentSplitting = HorizontalContentSplitting.Smart
            };

            // Create a detail band and add it to the report.
            DetailBand detail = new DetailBand();

            crossTabReport.Bands.Add(detail);

            // Create a cross tab and add it to the Detail band.
            XRCrossTab crossTab = new XRCrossTab();

            detail.Controls.Add(crossTab);
            crossTab.PrintOptions.RepeatColumnHeaders = true;
            crossTab.PrintOptions.RepeatRowHeaders    = true;

            // Create a data source
            Access97ConnectionParameters connectionParameters = new Access97ConnectionParameters(@"|DataDirectory|\nwind.mdb", "", "");
            SqlDataSource ds = new SqlDataSource(connectionParameters);

            // Create an SQL query to access the SalesPerson view.
            SelectQuery query = SelectQueryFluentBuilder.AddTable("SalesPerson")
                                .SelectColumn("CategoryName")
                                .SelectColumn("ProductName")
                                .SelectColumn("Country")
                                .SelectColumn("Sales Person")
                                .SelectColumn("Quantity")
                                .SelectColumn("Extended Price").Build("SalesPerson");

            ds.Queries.Add(query);

            // Bind the cross tab to data.
            crossTab.DataSource = ds;
            crossTab.DataMember = "SalesPerson";

            // Generate cross tab's fields.
            crossTab.RowFields.Add(new CrossTabRowField()
            {
                FieldName = "CategoryName"
            });
            crossTab.RowFields.Add(new CrossTabRowField()
            {
                FieldName = "ProductName"
            });
            crossTab.ColumnFields.Add(new CrossTabColumnField()
            {
                FieldName = "Country"
            });
            crossTab.ColumnFields.Add(new CrossTabColumnField()
            {
                FieldName = "Sales Person"
            });
            crossTab.DataFields.Add(new CrossTabDataField()
            {
                FieldName = "Quantity"
            });
            crossTab.DataFields.Add(new CrossTabDataField()
            {
                FieldName = "Extended Price"
            });
            crossTab.GenerateLayout();

            /*
             +----------------+---------------+-------------------------------+---------------------------+---------------------------+
             | Category Name  | Product Name  | [Country]                     | Total [Country]           | Grand total               |
             |                |               +-------------------------------+                           |                           |
             |                |               | [Sales Person]                |                           |                           |
             |                |               +------------+------------------+----------+----------------+----------+----------------+
             |                |               | Quantity   | Extended Price   | Quantity | Extended Price | Quantity | Extended Price |
             +----------------+---------------+------------+------------------+----------+----------------+----------+----------------+
             | [CategoryName] | [ProductName] | [Quantity] | [Extended Price] |          |                |          |                |
             +----------------+---------------+------------+------------------+----------+----------------+----------+----------------+
             | Total [CategoryName]           |            |                  |          |                |          |                |
             +--------------------------------+------------+------------------+----------+----------------+----------+----------------+
             | Grand Total                    |            |                  |          |                |          |                |
             +--------------------------------+------------+------------------+----------+----------------+----------+----------------+
             */

            //Adjust generated cells
            foreach (var c in crossTab.ColumnDefinitions)
            {
                //Enable auto-width for all columns
                c.AutoWidthMode = DevExpress.XtraReports.UI.AutoSizeMode.GrowOnly;
            }

            foreach (XRCrossTabCell c in crossTab.Cells)
            {
                if (c.DataLevel == 1 && c.RowIndex != 2)
                {
                    //Adjust format string for the "Extended Price" cells
                    c.TextFormatString = "{0:c}";
                }
            }


            // Assign styles to cross tab
            crossTab.CrossTabStyles.GeneralStyle = new XRControlStyle()
            {
                Name    = "Default",
                Borders = BorderSide.All,
                Padding = new PaddingInfo()
                {
                    All = 2
                }
            };
            crossTab.CrossTabStyles.DataAreaStyle = crossTab.CrossTabStyles.TotalAreaStyle = new XRControlStyle()
            {
                Name          = "Data",
                TextAlignment = TextAlignment.TopRight
            };
            crossTab.CrossTabStyles.HeaderAreaStyle = new XRControlStyle()
            {
                Name      = "HeaderAndTotals",
                BackColor = Color.WhiteSmoke
            };
            return(crossTabReport);
        }
Ejemplo n.º 15
0
 private void InitializeComponent()
 {
     this.dtl = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
     this.ph = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xlblReportHeader = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo = new DevExpress.XtraReports.UI.XRPageInfo();
     this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xlblTimeRange = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblMemo = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // dtl
     //
     this.dtl.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrTable1});
     this.dtl.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.dtl.Height = 744;
     this.dtl.Name = "dtl";
     this.dtl.ParentStyleUsing.UseFont = false;
     //
     // xrTable1
     //
     this.xrTable1.BorderColor = System.Drawing.SystemColors.WindowText;
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.Location = new System.Drawing.Point(17, 17);
     this.xrTable1.Name = "xrTable1";
     this.xrTable1.ParentStyleUsing.UseBackColor = false;
     this.xrTable1.ParentStyleUsing.UseBorderColor = false;
     this.xrTable1.ParentStyleUsing.UseBorders = false;
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow1,
     this.xrTableRow2,
     this.xrTableRow3,
     this.xrTableRow4,
     this.xrTableRow6,
     this.xrTableRow5});
     this.xrTable1.Size = new System.Drawing.Size(758, 727);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell1,
     this.xrTableCell2});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Size = new System.Drawing.Size(758, 30);
     //
     // xrTableCell1
     //
     this.xrTableCell1.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell1.Location = new System.Drawing.Point(0, 0);
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.ParentStyleUsing.UseFont = false;
     this.xrTableCell1.Size = new System.Drawing.Size(379, 30);
     this.xrTableCell1.Text = "日期:";
     //
     // xrTableCell2
     //
     this.xrTableCell2.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell2.Location = new System.Drawing.Point(379, 0);
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.ParentStyleUsing.UseFont = false;
     this.xrTableCell2.Size = new System.Drawing.Size(379, 30);
     this.xrTableCell2.Text = "時間:";
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell3});
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Size = new System.Drawing.Size(758, 63);
     //
     // xrTableCell3
     //
     this.xrTableCell3.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell3.Location = new System.Drawing.Point(0, 0);
     this.xrTableCell3.Multiline = true;
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.ParentStyleUsing.UseFont = false;
     this.xrTableCell3.Size = new System.Drawing.Size(758, 63);
     this.xrTableCell3.Text = "播報內容:\r\n1.事故";
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell5});
     this.xrTableRow3.Name = "xrTableRow3";
     this.xrTableRow3.Size = new System.Drawing.Size(758, 84);
     //
     // xrTableCell5
     //
     this.xrTableCell5.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell5.Location = new System.Drawing.Point(0, 0);
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.ParentStyleUsing.UseFont = false;
     this.xrTableCell5.Size = new System.Drawing.Size(758, 84);
     this.xrTableCell5.Text = "\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n";
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell4});
     this.xrTableRow4.Name = "xrTableRow4";
     this.xrTableRow4.Size = new System.Drawing.Size(758, 398);
     //
     // xrTableCell4
     //
     this.xrTableCell4.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell4.Location = new System.Drawing.Point(0, 0);
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.ParentStyleUsing.UseFont = false;
     this.xrTableCell4.Size = new System.Drawing.Size(758, 300);
     this.xrTableCell4.Text = "3.施工(國道1號 國道3號 國道4號 國道6號)";
     //
     // xrTableRow6
     //
     this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell7});
     this.xrTableRow6.Name = "xrTableRow6";
     this.xrTableRow6.Size = new System.Drawing.Size(758, 76);
     //
     // xrTableCell7
     //
     this.xrTableCell7.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell7.Location = new System.Drawing.Point(0, 0);
     this.xrTableCell7.Multiline = true;
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.ParentStyleUsing.UseFont = false;
     this.xrTableCell7.Size = new System.Drawing.Size(758, 76);
     this.xrTableCell7.Text = "4.其他相關宣導\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n";
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableCell6});
     this.xrTableRow5.Name = "xrTableRow5";
     this.xrTableRow5.Size = new System.Drawing.Size(758, 76);
     //
     // xrTableCell6
     //
     this.xrTableCell6.Font = new System.Drawing.Font("標楷體", 12F);
     this.xrTableCell6.Location = new System.Drawing.Point(0, 0);
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.ParentStyleUsing.UseFont = false;
     this.xrTableCell6.Size = new System.Drawing.Size(758, 76);
     this.xrTableCell6.Text = "以上路況 資訊,由高速公路局中區工程處交控中心提供,祝您行車平安。";
     //
     // ph
     //
     this.ph.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.ph.Height = 0;
     this.ph.Name = "ph";
     this.ph.ParentStyleUsing.UseFont = false;
     //
     // xlblReportHeader
     //
     this.xlblReportHeader.BackColor = System.Drawing.Color.Empty;
     this.xlblReportHeader.BorderColor = System.Drawing.SystemColors.Control;
     this.xlblReportHeader.Font = new System.Drawing.Font("標楷體", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xlblReportHeader.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblReportHeader.Location = new System.Drawing.Point(83, 42);
     this.xlblReportHeader.Name = "xlblReportHeader";
     this.xlblReportHeader.ParentStyleUsing.UseBackColor = false;
     this.xlblReportHeader.ParentStyleUsing.UseBorderColor = false;
     this.xlblReportHeader.ParentStyleUsing.UseFont = false;
     this.xlblReportHeader.ParentStyleUsing.UseForeColor = false;
     this.xlblReportHeader.Size = new System.Drawing.Size(659, 33);
     this.xlblReportHeader.Text = "交通部台灣區國道高速公路中區工程處交控中心";
     this.xlblReportHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrLabel1.Location = new System.Drawing.Point(967, 108);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.ParentStyleUsing.UseFont = false;
     this.xrLabel1.ParentStyleUsing.UseForeColor = false;
     this.xrLabel1.Size = new System.Drawing.Size(108, 25);
     this.xrLabel1.Text = "頁次:";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrPageInfo
     //
     this.xrPageInfo.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrPageInfo.Location = new System.Drawing.Point(1075, 108);
     this.xrPageInfo.Name = "xrPageInfo";
     this.xrPageInfo.ParentStyleUsing.UseFont = false;
     this.xrPageInfo.ParentStyleUsing.UseForeColor = false;
     this.xrPageInfo.Size = new System.Drawing.Size(50, 25);
     this.xrPageInfo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xlblTimeRange,
     this.xrPageInfo,
     this.xrLabel1,
     this.xlblMemo,
     this.xlblReportHeader});
     this.TopMargin.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.TopMargin.Height = 142;
     this.TopMargin.Name = "TopMargin";
     this.TopMargin.ParentStyleUsing.UseFont = false;
     //
     // xlblTimeRange
     //
     this.xlblTimeRange.Font = new System.Drawing.Font("標楷體", 14F);
     this.xlblTimeRange.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblTimeRange.Location = new System.Drawing.Point(175, 92);
     this.xlblTimeRange.Name = "xlblTimeRange";
     this.xlblTimeRange.ParentStyleUsing.UseFont = false;
     this.xlblTimeRange.ParentStyleUsing.UseForeColor = false;
     this.xlblTimeRange.Size = new System.Drawing.Size(408, 25);
     this.xlblTimeRange.Text = "         每日定時路況簡報新聞稿草稿";
     this.xlblTimeRange.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblMemo
     //
     this.xlblMemo.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblMemo.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblMemo.Location = new System.Drawing.Point(967, 83);
     this.xlblMemo.Name = "xlblMemo";
     this.xlblMemo.ParentStyleUsing.UseFont = false;
     this.xlblMemo.ParentStyleUsing.UseForeColor = false;
     this.xlblMemo.Size = new System.Drawing.Size(158, 25);
     this.xlblMemo.Text = "中區-RPT_DATA_06";
     this.xlblMemo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // clsNewsPaper
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.dtl,
     this.ph,
     this.TopMargin});
     this.Margins = new System.Drawing.Printing.Margins(20, 20, 142, 75);
     this.PageHeight = 1169;
     this.PageWidth = 827;
     this.PaperKind = System.Drawing.Printing.PaperKind.A4;
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
        public void GivenTheDetailReportBandContainsASubreportInItsHeaderBand(string location)
        {
            Band band;
            switch (location.ToUpper())
            {
                case "HEADER":  
                    band = new ReportHeaderBand();
                    break;
                case "FOOTER":
                    band = new ReportFooterBand();
                    break;
                case "DETAIL":
                    band = new DetailBand();
                    break;
                default:
                    throw new NotImplementedException();
            }

            
            _xrSubreportContainer = new XRSubreport();
            band.Controls.Add(_xrSubreportContainer);
            _detailReport.Bands.Add(band);
        }
Ejemplo n.º 17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel29 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel28 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel43 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
     this.ppGroupHeaderBand1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel47 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine2 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
     this.ppDetailBand1 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPanel1 = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel42 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel44 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel41 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine3 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel30 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel26 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel24 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
     this.ReportFooter1 = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel49 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel48 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine4 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel31 = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter3 = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.xrLabel40 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel36 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel35 = new DevExpress.XtraReports.UI.XRLabel();
     this.Detail3 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel45 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel46 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailBand1 = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLine1 = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel33 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel39 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel37 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel32 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport3 = new DevExpress.XtraReports.UI.DetailReportBand();
     this.HeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel38 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel34 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabelstrMemberName = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabelMembershipID = new DevExpress.XtraReports.UI.XRLabel();
     this.ppChildReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel29,
     this.xrLabel28});
     this.Detail.Font = new System.Drawing.Font("Arial", 8.5F);
     this.Detail.Height = 18;
     this.Detail.Name = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel29
     //
     this.xrLabel29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptPayment_Relation.mAmount", "{0:$0.00}")});
     this.xrLabel29.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel29.Location = new System.Drawing.Point(208, 0);
     this.xrLabel29.Name = "xrLabel29";
     this.xrLabel29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel29.Size = new System.Drawing.Size(92, 17);
     this.xrLabel29.Text = "xrLabel29";
     this.xrLabel29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel28
     //
     this.xrLabel28.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptPayment_Relation.strPaymentCode", "")});
     this.xrLabel28.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel28.Location = new System.Drawing.Point(25, 0);
     this.xrLabel28.Name = "xrLabel28";
     this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel28.Size = new System.Drawing.Size(158, 17);
     this.xrLabel28.Text = "xrLabel28";
     this.xrLabel28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel1.Location = new System.Drawing.Point(25, 92);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.Size = new System.Drawing.Size(92, 17);
     this.xrLabel1.Text = "Membership ID:";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail1});
     this.DetailReport1.DataMember = "TblReceipt.Receipt_ReceiptFreebie_Relation";
     this.DetailReport1.Level = 2;
     this.DetailReport1.Name = "DetailReport1";
     this.DetailReport1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.DetailReport1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel43,
     this.xrLabel16,
     this.xrLabel15});
     this.Detail1.Height = 25;
     this.Detail1.Name = "Detail1";
     this.Detail1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel43
     //
     this.xrLabel43.Location = new System.Drawing.Point(25, 0);
     this.xrLabel43.Name = "xrLabel43";
     this.xrLabel43.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel43.Size = new System.Drawing.Size(83, 25);
     this.xrLabel43.Text = "Free Product :";
     this.xrLabel43.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel16
     //
     this.xrLabel16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptFreebie_Relation.strDescription", "")});
     this.xrLabel16.Location = new System.Drawing.Point(108, 0);
     this.xrLabel16.Name = "xrLabel16";
     this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.Size = new System.Drawing.Size(283, 25);
     this.xrLabel16.Text = "xrLabel16";
     this.xrLabel16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptFreebie_Relation.strItemCode", "")});
     this.xrLabel15.Location = new System.Drawing.Point(392, 0);
     this.xrLabel15.Name = "xrLabel15";
     this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.Size = new System.Drawing.Size(100, 25);
     this.xrLabel15.Text = "xrLabel15";
     this.xrLabel15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrLabel15.Visible = false;
     //
     // ppGroupHeaderBand1
     //
     this.ppGroupHeaderBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ppGroupHeaderBand1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
     new DevExpress.XtraReports.UI.GroupField("strReceiptNo", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
     this.ppGroupHeaderBand1.Height = 0;
     this.ppGroupHeaderBand1.Name = "ppGroupHeaderBand1";
     this.ppGroupHeaderBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ppGroupHeaderBand1.RepeatEveryPage = true;
     this.ppGroupHeaderBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel21
     //
     this.xrLabel21.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel21.Location = new System.Drawing.Point(25, 75);
     this.xrLabel21.Name = "xrLabel21";
     this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel21.Size = new System.Drawing.Size(92, 17);
     this.xrLabel21.Text = "Total Payable:";
     this.xrLabel21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel47
     //
     this.xrLabel47.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strFooter1", "")});
     this.xrLabel47.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel47.Location = new System.Drawing.Point(25, 42);
     this.xrLabel47.Multiline = true;
     this.xrLabel47.Name = "xrLabel47";
     this.xrLabel47.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel47.Size = new System.Drawing.Size(308, 17);
     this.xrLabel47.Text = "xrLabel34";
     this.xrLabel47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine2
     //
     this.xrLine2.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine2.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine2.Location = new System.Drawing.Point(8, 100);
     this.xrLine2.Name = "xrLine2";
     this.xrLine2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine2.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel25
     //
     this.xrLabel25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mNettAmount", "{0:$0.00}")});
     this.xrLabel25.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel25.Location = new System.Drawing.Point(208, 42);
     this.xrLabel25.Name = "xrLabel25";
     this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel25.Size = new System.Drawing.Size(100, 14);
     this.xrLabel25.Text = "xrLabel25";
     this.xrLabel25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.nQuantity", "")});
     this.xrLabel10.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel10.Location = new System.Drawing.Point(25, 0);
     this.xrLabel10.Name = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.Size = new System.Drawing.Size(17, 17);
     this.xrLabel10.Text = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ppDetailBand1
     //
     this.ppDetailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel14,
     this.xrPanel1,
     this.xrLabel13,
     this.xrLabel11,
     this.xrLabel10});
     this.ppDetailBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ppDetailBand1.Height = 47;
     this.ppDetailBand1.Name = "ppDetailBand1";
     this.ppDetailBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ppDetailBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel14
     //
     this.xrLabel14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.strFreebieCode", "")});
     this.xrLabel14.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel14.Location = new System.Drawing.Point(208, 33);
     this.xrLabel14.Name = "xrLabel14";
     this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.Size = new System.Drawing.Size(117, 14);
     this.xrLabel14.Text = "xrLabel14";
     this.xrLabel14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrPanel1
     //
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel17,
     this.xrLabel42,
     this.xrLabel44});
     this.xrPanel1.Location = new System.Drawing.Point(192, 17);
     this.xrPanel1.Name = "xrPanel1";
     this.xrPanel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrPanel1.Size = new System.Drawing.Size(141, 16);
     //
     // xrLabel17
     //
     this.xrLabel17.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.Location = new System.Drawing.Point(58, 0);
     this.xrLabel17.Name = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.Size = new System.Drawing.Size(8, 25);
     this.xrLabel17.Text = ")";
     this.xrLabel17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel42
     //
     this.xrLabel42.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold);
     this.xrLabel42.Location = new System.Drawing.Point(0, 0);
     this.xrLabel42.Name = "xrLabel42";
     this.xrLabel42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel42.Size = new System.Drawing.Size(16, 25);
     this.xrLabel42.Text = "($";
     this.xrLabel42.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel44
     //
     this.xrLabel44.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.DiscountAmt", "")});
     this.xrLabel44.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel44.Location = new System.Drawing.Point(17, 0);
     this.xrLabel44.Name = "xrLabel44";
     this.xrLabel44.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel44.Size = new System.Drawing.Size(41, 16);
     this.xrLabel44.Text = "ItemdiscountAmt";
     this.xrLabel44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel13
     //
     this.xrLabel13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.mUnitPrice", "{0:$0.00}")});
     this.xrLabel13.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel13.Location = new System.Drawing.Point(208, 0);
     this.xrLabel13.Name = "xrLabel13";
     this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.Size = new System.Drawing.Size(116, 15);
     this.xrLabel13.Text = "xrLabel13";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_ReceiptEntries_Relation.strDescription", "")});
     this.xrLabel11.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel11.Location = new System.Drawing.Point(42, 0);
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.Size = new System.Drawing.Size(141, 19);
     this.xrLabel11.Text = "xrLabel11";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel4.Location = new System.Drawing.Point(25, 125);
     this.xrLabel4.Name = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.Size = new System.Drawing.Size(83, 17);
     this.xrLabel4.Text = "Cashier ID:";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel22,
     this.xrLabel41,
     this.xrLabel12,
     this.xrLine3,
     this.xrLine2,
     this.xrLabel30,
     this.xrLabel27,
     this.xrLabel26,
     this.xrLabel25,
     this.xrLabel24,
     this.xrLabel23,
     this.xrLabel21,
     this.xrLabel20,
     this.xrLabel18,
     this.xrLabel19});
     this.ReportFooter.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ReportFooter.Height = 125;
     this.ReportFooter.Name = "ReportFooter";
     this.ReportFooter.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ReportFooter.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel22
     //
     this.xrLabel22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mSubTotal", "{0:$0.00}")});
     this.xrLabel22.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel22.Location = new System.Drawing.Point(208, 8);
     this.xrLabel22.Name = "xrLabel22";
     this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel22.Size = new System.Drawing.Size(116, 17);
     this.xrLabel22.Text = "xrLabel22";
     this.xrLabel22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel41
     //
     this.xrLabel41.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.GstTax", "")});
     this.xrLabel41.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel41.Location = new System.Drawing.Point(25, 58);
     this.xrLabel41.Name = "xrLabel41";
     this.xrLabel41.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel41.Size = new System.Drawing.Size(17, 16);
     this.xrLabel41.Text = "xrLabel41";
     this.xrLabel41.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel12
     //
     this.xrLabel12.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel12.Location = new System.Drawing.Point(25, 8);
     this.xrLabel12.Name = "xrLabel12";
     this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.Size = new System.Drawing.Size(75, 17);
     this.xrLabel12.Text = "SubTotal:";
     this.xrLabel12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine3
     //
     this.xrLine3.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine3.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine3.Location = new System.Drawing.Point(8, 0);
     this.xrLine3.Name = "xrLine3";
     this.xrLine3.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine3.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel30
     //
     this.xrLabel30.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel30.Location = new System.Drawing.Point(25, 108);
     this.xrLabel30.Name = "xrLabel30";
     this.xrLabel30.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel30.Size = new System.Drawing.Size(92, 17);
     this.xrLabel30.Text = "TENDERED:";
     this.xrLabel30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel27
     //
     this.xrLabel27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mTotalAmount", "{0:$0.00}")});
     this.xrLabel27.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel27.Location = new System.Drawing.Point(208, 75);
     this.xrLabel27.Name = "xrLabel27";
     this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel27.Size = new System.Drawing.Size(100, 23);
     this.xrLabel27.Text = "xrLabel27";
     this.xrLabel27.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel26
     //
     this.xrLabel26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mGSTAmount", "{0:$0.00}")});
     this.xrLabel26.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel26.Location = new System.Drawing.Point(208, 58);
     this.xrLabel26.Name = "xrLabel26";
     this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel26.Size = new System.Drawing.Size(100, 16);
     this.xrLabel26.Text = "xrLabel26";
     this.xrLabel26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel24
     //
     this.xrLabel24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.DiscountAmt", "{0:$0.00}")});
     this.xrLabel24.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel24.Location = new System.Drawing.Point(208, 25);
     this.xrLabel24.Name = "xrLabel24";
     this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel24.Size = new System.Drawing.Size(100, 16);
     this.xrLabel24.Text = "xrLabel24";
     this.xrLabel24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel23
     //
     this.xrLabel23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strFreebieCode", "")});
     this.xrLabel23.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel23.Location = new System.Drawing.Point(117, 25);
     this.xrLabel23.Name = "xrLabel23";
     this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel23.Size = new System.Drawing.Size(91, 16);
     this.xrLabel23.Text = "xrLabel23";
     this.xrLabel23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel20
     //
     this.xrLabel20.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel20.Location = new System.Drawing.Point(42, 58);
     this.xrLabel20.Name = "xrLabel20";
     this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.Size = new System.Drawing.Size(67, 17);
     this.xrLabel20.Text = "% GST:";
     this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel18.Location = new System.Drawing.Point(25, 25);
     this.xrLabel18.Name = "xrLabel18";
     this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.Size = new System.Drawing.Size(83, 17);
     this.xrLabel18.Text = "Bill Discount:";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel19
     //
     this.xrLabel19.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel19.Location = new System.Drawing.Point(25, 42);
     this.xrLabel19.Name = "xrLabel19";
     this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.Size = new System.Drawing.Size(75, 17);
     this.xrLabel19.Text = "Nett Value:";
     this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail,
     this.ReportFooter1});
     this.DetailReport.DataMember = "TblReceipt.Receipt_ReceiptPayment_Relation";
     this.DetailReport.Font = new System.Drawing.Font("Arial", 8.5F);
     this.DetailReport.Level = 1;
     this.DetailReport.Name = "DetailReport";
     this.DetailReport.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.DetailReport.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter1
     //
     this.ReportFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel49,
     this.xrLabel48,
     this.xrLabel7,
     this.xrLabel6});
     this.ReportFooter1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ReportFooter1.Height = 49;
     this.ReportFooter1.Name = "ReportFooter1";
     this.ReportFooter1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ReportFooter1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.ReportFooter1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.ReportFooter1_BeforePrint);
     //
     // xrLabel49
     //
     this.xrLabel49.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.mOutstandingAmount", "{0:$0.00}")});
     this.xrLabel49.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel49.Location = new System.Drawing.Point(208, 17);
     this.xrLabel49.Name = "xrLabel49";
     this.xrLabel49.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel49.Size = new System.Drawing.Size(75, 17);
     this.xrLabel49.Text = "xrLabel36";
     this.xrLabel49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel48
     //
     this.xrLabel48.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel48.Location = new System.Drawing.Point(25, 17);
     this.xrLabel48.Name = "xrLabel48";
     this.xrLabel48.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel48.Size = new System.Drawing.Size(183, 17);
     this.xrLabel48.Text = "OutStanding Amount :";
     this.xrLabel48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel7.Location = new System.Drawing.Point(25, 0);
     this.xrLabel7.Name = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.Size = new System.Drawing.Size(183, 17);
     this.xrLabel7.Text = "GST Collected For this Bill:";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.GSTPaid", "{0:$0.00}")});
     this.xrLabel6.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel6.Location = new System.Drawing.Point(208, 0);
     this.xrLabel6.Name = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.Size = new System.Drawing.Size(75, 17);
     this.xrLabel6.Text = "xrLabel36";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine4
     //
     this.xrLine4.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine4.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine4.Location = new System.Drawing.Point(8, 0);
     this.xrLine4.Name = "xrLine4";
     this.xrLine4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine4.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel31
     //
     this.xrLabel31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader1", "")});
     this.xrLabel31.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel31.Location = new System.Drawing.Point(25, 0);
     this.xrLabel31.Name = "xrLabel31";
     this.xrLabel31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel31.Size = new System.Drawing.Size(317, 17);
     this.xrLabel31.Text = "xrLabel31";
     this.xrLabel31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportFooter3
     //
     this.ReportFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel47,
     this.xrLabel40,
     this.xrLine4,
     this.xrLabel36,
     this.xrLabel35});
     this.ReportFooter3.Name = "ReportFooter3";
     //
     // xrLabel40
     //
     this.xrLabel40.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel40.Location = new System.Drawing.Point(25, 67);
     this.xrLabel40.Multiline = true;
     this.xrLabel40.Name = "xrLabel40";
     this.xrLabel40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel40.Size = new System.Drawing.Size(308, 17);
     this.xrLabel40.Text = "Amore Fitness is an award winning company and its once again cerfitied ISO9001:20" +
         "08 for quality assurance and service execellence";
     this.xrLabel40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel36
     //
     this.xrLabel36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.RewardPoint", "")});
     this.xrLabel36.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel36.Location = new System.Drawing.Point(208, 17);
     this.xrLabel36.Name = "xrLabel36";
     this.xrLabel36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel36.Size = new System.Drawing.Size(100, 17);
     this.xrLabel36.Text = "xrLabel36";
     this.xrLabel36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel35
     //
     this.xrLabel35.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel35.Location = new System.Drawing.Point(25, 17);
     this.xrLabel35.Name = "xrLabel35";
     this.xrLabel35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel35.Size = new System.Drawing.Size(200, 17);
     this.xrLabel35.Text = "BALANCE REWARDS POINTS: ";
     this.xrLabel35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Detail3
     //
     this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel45,
     this.xrLabel46});
     this.Detail3.Height = 25;
     this.Detail3.Name = "Detail3";
     //
     // xrLabel45
     //
     this.xrLabel45.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.Receipt_FreePackage_Relation.strDescription", "")});
     this.xrLabel45.Location = new System.Drawing.Point(108, 0);
     this.xrLabel45.Name = "xrLabel45";
     this.xrLabel45.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel45.Size = new System.Drawing.Size(284, 25);
     this.xrLabel45.Text = "xrLabel45";
     this.xrLabel45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel46
     //
     this.xrLabel46.Location = new System.Drawing.Point(25, 0);
     this.xrLabel46.Name = "xrLabel46";
     this.xrLabel46.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel46.Size = new System.Drawing.Size(100, 25);
     this.xrLabel46.Text = "Free Package :";
     this.xrLabel46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailBand1
     //
     this.DetailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLine1,
     this.xrLabel9});
     this.DetailBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.DetailBand1.Height = 25;
     this.DetailBand1.Name = "DetailBand1";
     this.DetailBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.DetailBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLine1
     //
     this.xrLine1.Font = new System.Drawing.Font("Times New Roman", 9.75F);
     this.xrLine1.LineStyle = System.Drawing.Drawing2D.DashStyle.Dash;
     this.xrLine1.Location = new System.Drawing.Point(8, 17);
     this.xrLine1.Name = "xrLine1";
     this.xrLine1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLine1.Size = new System.Drawing.Size(334, 8);
     //
     // xrLabel9
     //
     this.xrLabel9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strReceiptNo", "")});
     this.xrLabel9.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel9.Location = new System.Drawing.Point(42, 0);
     this.xrLabel9.Name = "xrLabel9";
     this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.Size = new System.Drawing.Size(100, 17);
     this.xrLabel9.Text = "xrLabel9";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     this.xrLabel9.Visible = false;
     //
     // xrLabel33
     //
     this.xrLabel33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader3", "")});
     this.xrLabel33.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel33.Location = new System.Drawing.Point(25, 33);
     this.xrLabel33.Name = "xrLabel33";
     this.xrLabel33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel33.Size = new System.Drawing.Size(317, 16);
     this.xrLabel33.Text = "xrLabel33";
     this.xrLabel33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.nSalespersonID", "")});
     this.xrLabel3.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel3.Location = new System.Drawing.Point(117, 108);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.Size = new System.Drawing.Size(108, 19);
     this.xrLabel3.Text = "xrLabel3";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel39
     //
     this.xrLabel39.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strReceiptNo", "")});
     this.xrLabel39.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel39.Location = new System.Drawing.Point(33, 142);
     this.xrLabel39.Name = "xrLabel39";
     this.xrLabel39.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel39.Size = new System.Drawing.Size(75, 17);
     this.xrLabel39.Text = "xrLabel6";
     this.xrLabel39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel37
     //
     this.xrLabel37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.dtDate", "{0:dddd, dd MMMM yyyy}")});
     this.xrLabel37.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel37.Location = new System.Drawing.Point(108, 142);
     this.xrLabel37.Name = "xrLabel37";
     this.xrLabel37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel37.Size = new System.Drawing.Size(234, 17);
     this.xrLabel37.Text = "xrLabel37";
     this.xrLabel37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel32
     //
     this.xrLabel32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader2", "")});
     this.xrLabel32.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel32.Location = new System.Drawing.Point(25, 17);
     this.xrLabel32.Name = "xrLabel32";
     this.xrLabel32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel32.Size = new System.Drawing.Size(317, 17);
     this.xrLabel32.Text = "xrLabel32";
     this.xrLabel32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel2.Location = new System.Drawing.Point(25, 108);
     this.xrLabel2.Name = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.Size = new System.Drawing.Size(92, 17);
     this.xrLabel2.Text = "Salesperson ID:";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // DetailReport3
     //
     this.DetailReport3.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail3,
     this.ReportFooter3});
     this.DetailReport3.DataMember = "TblReceipt.Receipt_FreePackage_Relation";
     this.DetailReport3.Level = 3;
     this.DetailReport3.Name = "DetailReport3";
     //
     // HeaderBand1
     //
     this.HeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel8,
     this.xrLabel39,
     this.xrLabel38,
     this.xrLabel37,
     this.xrLabel34,
     this.xrLabel33,
     this.xrLabel32,
     this.xrLabel31,
     this.xrLabel5,
     this.xrLabel4,
     this.xrLabel3,
     this.xrLabel2,
     this.xrLabelstrMemberName,
     this.xrLabelMembershipID,
     this.xrLabel1});
     this.HeaderBand1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.HeaderBand1.Height = 159;
     this.HeaderBand1.Name = "HeaderBand1";
     this.HeaderBand1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.HeaderBand1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader5", "")});
     this.xrLabel8.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel8.Location = new System.Drawing.Point(25, 67);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.Size = new System.Drawing.Size(317, 17);
     this.xrLabel8.Text = "xrLabel8";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel38
     //
     this.xrLabel38.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold);
     this.xrLabel38.Location = new System.Drawing.Point(25, 142);
     this.xrLabel38.Name = "xrLabel38";
     this.xrLabel38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel38.Size = new System.Drawing.Size(17, 17);
     this.xrLabel38.Text = "#";
     this.xrLabel38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel34
     //
     this.xrLabel34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "tblBranch.strHeader4", "")});
     this.xrLabel34.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel34.Location = new System.Drawing.Point(25, 50);
     this.xrLabel34.Name = "xrLabel34";
     this.xrLabel34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel34.Size = new System.Drawing.Size(317, 17);
     this.xrLabel34.Text = "xrLabel34";
     this.xrLabel34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.nCashierID", "")});
     this.xrLabel5.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabel5.Location = new System.Drawing.Point(117, 125);
     this.xrLabel5.Name = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.Size = new System.Drawing.Size(83, 19);
     this.xrLabel5.Text = "xrLabel5";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabelstrMemberName
     //
     this.xrLabelstrMemberName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strMemberName", "")});
     this.xrLabelstrMemberName.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabelstrMemberName.Location = new System.Drawing.Point(167, 92);
     this.xrLabelstrMemberName.Name = "xrLabelstrMemberName";
     this.xrLabelstrMemberName.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabelstrMemberName.Size = new System.Drawing.Size(109, 17);
     this.xrLabelstrMemberName.Text = "Member Name";
     this.xrLabelstrMemberName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabelMembershipID
     //
     this.xrLabelMembershipID.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "TblReceipt.strMembershipID", "")});
     this.xrLabelMembershipID.Font = new System.Drawing.Font("Arial", 8.5F);
     this.xrLabelMembershipID.Location = new System.Drawing.Point(117, 92);
     this.xrLabelMembershipID.Name = "xrLabelMembershipID";
     this.xrLabelMembershipID.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabelMembershipID.Size = new System.Drawing.Size(58, 17);
     this.xrLabelMembershipID.Text = "xrLabelMembershipID";
     this.xrLabelMembershipID.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ppChildReport1
     //
     this.ppChildReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.ppDetailBand1,
     this.ReportFooter});
     this.ppChildReport1.DataMember = "TblReceipt.Receipt_ReceiptEntries_Relation";
     this.ppChildReport1.Font = new System.Drawing.Font("Arial", 8.5F);
     this.ppChildReport1.Name = "ppChildReport1";
     this.ppChildReport1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.ppChildReport1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // Receipt
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.DetailBand1,
     this.HeaderBand1,
     this.ppGroupHeaderBand1,
     this.ppChildReport1,
     this.DetailReport,
     this.DetailReport1,
     this.DetailReport3});
     this.DataMember = "TblReceipt";
     this.Margins = new System.Drawing.Printing.Margins(0, 48, 0, 12);
     this.PageHeight = 900;
     this.PageWidth = 544;
     this.PaperKind = System.Drawing.Printing.PaperKind.Custom;
     this.PreviewRowCount = 100;
     this.Version = "8.3";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 18
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "ActMainReport.resx";
         this.components = new System.ComponentModel.Container();
         DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary4 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary5 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary6 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary7 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary8 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary9 = new DevExpress.XtraReports.UI.XRSummary();
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.tblActs = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellTotalCost = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellPaidOn = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellLeftOn = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellApproval1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellKailasPaid1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellKailasDue = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellPaidDue = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellApproval2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cellKailasPaid2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.tblActHeader = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
         this.hdrTotalCost = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell61 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.tblGroupDate = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
         this.tblActHeader1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
         this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
         this.detailDocuments = new DevExpress.XtraReports.UI.DetailBand();
         this.tblDocument = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell62 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell64 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell65 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell63 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
         this.srcActs = new System.Windows.Forms.BindingSource(this.components);
         this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
         this.tblActSummary = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumTotalCost = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumPaidOn = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumLeftOn = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumApproval1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumKailasPaid1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumKailasDue = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumPaidDue = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumApproval2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.sumKailasPaid2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
         this.cfOnDate = new DevExpress.XtraReports.UI.CalculatedField();
         ((System.ComponentModel.ISupportInitialize)(this.tblActs)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActHeader)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblGroupDate)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActHeader1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblDocument)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.srcActs)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActSummary)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // Detail
         //
         this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblActs});
         this.Detail.HeightF = 15F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         this.Detail.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
         //
         // tblActs
         //
         this.tblActs.BackColor = System.Drawing.Color.Thistle;
         this.tblActs.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.tblActs.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActs.Name = "tblActs";
         this.tblActs.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
         this.tblActs.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblActs.StylePriority.UseBackColor = false;
         this.tblActs.StylePriority.UseBorders = false;
         this.tblActs.StylePriority.UseTextAlignment = false;
         this.tblActs.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         //
         // xrTableRow2
         //
         this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell2,
         this.xrTableCell4,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12,
         this.cellTotalCost,
         this.cellPaidOn,
         this.cellLeftOn,
         this.cellApproval1,
         this.cellKailasPaid1,
         this.cellKailasDue,
         this.cellPaidDue,
         this.cellApproval2,
         this.cellKailasPaid2,
         this.xrTableCell22,
         this.xrTableCell23,
         this.xrTableCell24,
         this.xrTableCell5});
         this.xrTableRow2.Name = "xrTableRow2";
         this.xrTableRow2.Weight = 1D;
         //
         // xrTableCell2
         //
         this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeName")});
         this.xrTableCell2.Name = "xrTableCell2";
         this.xrTableCell2.Text = "xrTableCell2";
         this.xrTableCell2.Weight = 0.33707868689518711D;
         //
         // xrTableCell4
         //
         this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "UnitName")});
         this.xrTableCell4.Name = "xrTableCell4";
         this.xrTableCell4.Text = "xrTableCell4";
         this.xrTableCell4.Weight = 0.22471907062271032D;
         //
         // xrTableCell6
         //
         this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Address")});
         this.xrTableCell6.Name = "xrTableCell6";
         this.xrTableCell6.Text = "xrTableCell6";
         this.xrTableCell6.Weight = 0.22471913729657511D;
         //
         // xrTableCell7
         //
         this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerName")});
         this.xrTableCell7.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell7.Name = "xrTableCell7";
         this.xrTableCell7.StylePriority.UseFont = false;
         this.xrTableCell7.Text = "xrTableCell7";
         this.xrTableCell7.Weight = 0.37453185898241342D;
         //
         // xrTableCell8
         //
         this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerPhone")});
         this.xrTableCell8.Name = "xrTableCell8";
         this.xrTableCell8.StylePriority.UseTextAlignment = false;
         this.xrTableCell8.Text = "xrTableCell8";
         this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell8.Weight = 0.13108616421673858D;
         //
         // xrTableCell9
         //
         this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "AreaAmount")});
         this.xrTableCell9.Name = "xrTableCell9";
         this.xrTableCell9.StylePriority.UseTextAlignment = false;
         this.xrTableCell9.Text = "xrTableCell9";
         this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell9.Weight = 0.074906378701990128D;
         //
         // xrTableCell10
         //
         this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ActAmount")});
         this.xrTableCell10.Name = "xrTableCell10";
         this.xrTableCell10.StylePriority.UseTextAlignment = false;
         this.xrTableCell10.Text = "xrTableCell10";
         this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell10.Weight = 0.074906375725478314D;
         //
         // xrTableCell11
         //
         this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CategoryName")});
         this.xrTableCell11.Name = "xrTableCell11";
         this.xrTableCell11.StylePriority.UseTextAlignment = false;
         this.xrTableCell11.Text = "xrTableCell11";
         this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell11.Weight = 0.13108615379894739D;
         //
         // xrTableCell12
         //
         this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "StateName")});
         this.xrTableCell12.Name = "xrTableCell12";
         this.xrTableCell12.StylePriority.UseTextAlignment = false;
         this.xrTableCell12.Text = "xrTableCell12";
         this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell12.Weight = 0.14981274624206087D;
         //
         // cellTotalCost
         //
         this.cellTotalCost.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalCost", "{0:#.00}")});
         this.cellTotalCost.Name = "cellTotalCost";
         this.cellTotalCost.StylePriority.UseTextAlignment = false;
         this.cellTotalCost.Tag = "TotalCost";
         this.cellTotalCost.Text = "cellTotalCost";
         this.cellTotalCost.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellTotalCost.Weight = 0.093632966308272114D;
         //
         // cellPaidOn
         //
         this.cellPaidOn.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidOn", "{0:#.00}")});
         this.cellPaidOn.Name = "cellPaidOn";
         this.cellPaidOn.StylePriority.UseTextAlignment = false;
         this.cellPaidOn.Tag = "PaidOn";
         this.cellPaidOn.Text = "cellPaidOn";
         this.cellPaidOn.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellPaidOn.Weight = 0.093632966122240036D;
         //
         // cellLeftOn
         //
         this.cellLeftOn.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "LeftOn", "{0:#.00}")});
         this.cellLeftOn.Name = "cellLeftOn";
         this.cellLeftOn.StylePriority.UseTextAlignment = false;
         this.cellLeftOn.Tag = "LeftOn";
         this.cellLeftOn.Text = "cellLeftOn";
         this.cellLeftOn.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellLeftOn.Weight = 0.093632966029224107D;
         //
         // cellApproval1
         //
         this.cellApproval1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Approval1", "{0:#.00}")});
         this.cellApproval1.Name = "cellApproval1";
         this.cellApproval1.StylePriority.UseTextAlignment = false;
         this.cellApproval1.Tag = "Approval1";
         this.cellApproval1.Text = "cellApproval1";
         this.cellApproval1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellApproval1.Weight = 0.093632965982716088D;
         //
         // cellKailasPaid1
         //
         this.cellKailasPaid1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasPaid1", "{0:#.00}")});
         this.cellKailasPaid1.Name = "cellKailasPaid1";
         this.cellKailasPaid1.StylePriority.UseTextAlignment = false;
         this.cellKailasPaid1.Tag = "KailasPaid1";
         this.cellKailasPaid1.Text = "cellKailasPaid1";
         this.cellKailasPaid1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellKailasPaid1.Weight = 0.093632965959462189D;
         //
         // cellKailasDue
         //
         this.cellKailasDue.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasDue", "{0:#.00}")});
         this.cellKailasDue.Name = "cellKailasDue";
         this.cellKailasDue.StylePriority.UseTextAlignment = false;
         this.cellKailasDue.Tag = "KailasDue";
         this.cellKailasDue.Text = "cellKailasDue";
         this.cellKailasDue.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellKailasDue.Weight = 0.093632965947835156D;
         //
         // cellPaidDue
         //
         this.cellPaidDue.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidDue", "{0:#.00}")});
         this.cellPaidDue.Name = "cellPaidDue";
         this.cellPaidDue.StylePriority.UseTextAlignment = false;
         this.cellPaidDue.Tag = "PaidDue";
         this.cellPaidDue.Text = "cellPaidDue";
         this.cellPaidDue.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellPaidDue.Weight = 0.093632965942021584D;
         //
         // cellApproval2
         //
         this.cellApproval2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Approval2", "{0:#.00}")});
         this.cellApproval2.Name = "cellApproval2";
         this.cellApproval2.StylePriority.UseTextAlignment = false;
         this.cellApproval2.Tag = "Approval2";
         this.cellApproval2.Text = "cellApproval2";
         this.cellApproval2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellApproval2.Weight = 0.093632965939114854D;
         //
         // cellKailasPaid2
         //
         this.cellKailasPaid2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasPaid2", "{0:#.00}")});
         this.cellKailasPaid2.Name = "cellKailasPaid2";
         this.cellKailasPaid2.StylePriority.UseTextAlignment = false;
         this.cellKailasPaid2.Tag = "KailasPaid2";
         this.cellKailasPaid2.Text = "cellKailasPaid2";
         this.cellKailasPaid2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.cellKailasPaid2.Weight = 0.093632965937661489D;
         //
         // xrTableCell22
         //
         this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SalaryCalculated", "{0:#.00}")});
         this.xrTableCell22.Name = "xrTableCell22";
         this.xrTableCell22.StylePriority.UseTextAlignment = false;
         this.xrTableCell22.Tag = "SalaryCalculated";
         this.xrTableCell22.Text = "cellSalaryCalculated";
         this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell22.Weight = 0.093632961067487558D;
         //
         // xrTableCell23
         //
         this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "SalaryPaidDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell23.Name = "xrTableCell23";
         this.xrTableCell23.StylePriority.UseTextAlignment = false;
         this.xrTableCell23.Tag = "SalaryPaidDate";
         this.xrTableCell23.Text = "cellSalaryPaidDate";
         this.xrTableCell23.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell23.Weight = 0.11235955169479248D;
         //
         // xrTableCell24
         //
         this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CalculatedMain", "{0:#.00}")});
         this.xrTableCell24.Name = "xrTableCell24";
         this.xrTableCell24.StylePriority.UseTextAlignment = false;
         this.xrTableCell24.Tag = "CalculatedMain";
         this.xrTableCell24.Text = "cellCalculatedMain";
         this.xrTableCell24.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell24.Weight = 0.093632959367995469D;
         //
         // xrTableCell5
         //
         this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidMainDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell5.Name = "xrTableCell5";
         this.xrTableCell5.StylePriority.UseTextAlignment = false;
         this.xrTableCell5.Tag = "PaidMainDate";
         this.xrTableCell5.Text = "cellPaidMainDate";
         this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell5.Weight = 0.13483126121907518D;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 50F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 50F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // ReportHeader
         //
         this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblActHeader});
         this.ReportHeader.HeightF = 75.00001F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // tblActHeader
         //
         this.tblActHeader.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblActHeader.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.tblActHeader.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActHeader.Name = "tblActHeader";
         this.tblActHeader.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow5});
         this.tblActHeader.SizeF = new System.Drawing.SizeF(1602F, 75.00001F);
         this.tblActHeader.StylePriority.UseBorders = false;
         this.tblActHeader.StylePriority.UseFont = false;
         this.tblActHeader.StylePriority.UseTextAlignment = false;
         this.tblActHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow5
         //
         this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell40,
         this.xrTableCell41,
         this.xrTableCell42,
         this.xrTableCell43,
         this.xrTableCell44,
         this.xrTableCell45,
         this.xrTableCell46,
         this.xrTableCell47,
         this.xrTableCell48,
         this.hdrTotalCost,
         this.xrTableCell50,
         this.xrTableCell51,
         this.xrTableCell52,
         this.xrTableCell53,
         this.xrTableCell54,
         this.xrTableCell55,
         this.xrTableCell56,
         this.xrTableCell57,
         this.xrTableCell58,
         this.xrTableCell59,
         this.xrTableCell60,
         this.xrTableCell61});
         this.xrTableRow5.Name = "xrTableRow5";
         this.xrTableRow5.Weight = 1D;
         //
         // xrTableCell40
         //
         this.xrTableCell40.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell40.Name = "xrTableCell40";
         this.xrTableCell40.StylePriority.UseBorders = false;
         this.xrTableCell40.Text = "Працівник";
         this.xrTableCell40.Weight = 0.33707868689518711D;
         //
         // xrTableCell41
         //
         this.xrTableCell41.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell41.Name = "xrTableCell41";
         this.xrTableCell41.StylePriority.UseBorders = false;
         this.xrTableCell41.Text = "Населений пункт";
         this.xrTableCell41.Weight = 0.22471907062271032D;
         //
         // xrTableCell42
         //
         this.xrTableCell42.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell42.Name = "xrTableCell42";
         this.xrTableCell42.StylePriority.UseBorders = false;
         this.xrTableCell42.Text = "Адреса";
         this.xrTableCell42.Weight = 0.22471913729657511D;
         //
         // xrTableCell43
         //
         this.xrTableCell43.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell43.Name = "xrTableCell43";
         this.xrTableCell43.StylePriority.UseBorders = false;
         this.xrTableCell43.Text = "Замовник";
         this.xrTableCell43.Weight = 0.37453185898241342D;
         //
         // xrTableCell44
         //
         this.xrTableCell44.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell44.Name = "xrTableCell44";
         this.xrTableCell44.StylePriority.UseBorders = false;
         this.xrTableCell44.StylePriority.UseTextAlignment = false;
         this.xrTableCell44.Text = "Телефон";
         this.xrTableCell44.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell44.Weight = 0.13108616421673858D;
         //
         // xrTableCell45
         //
         this.xrTableCell45.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell45.Multiline = true;
         this.xrTableCell45.Name = "xrTableCell45";
         this.xrTableCell45.StylePriority.UseBorders = false;
         this.xrTableCell45.StylePriority.UseTextAlignment = false;
         this.xrTableCell45.Text = "К-сть ділянок";
         this.xrTableCell45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell45.Weight = 0.074906378701990128D;
         //
         // xrTableCell46
         //
         this.xrTableCell46.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell46.Name = "xrTableCell46";
         this.xrTableCell46.StylePriority.UseBorders = false;
         this.xrTableCell46.StylePriority.UseTextAlignment = false;
         this.xrTableCell46.Text = "К-сть актів";
         this.xrTableCell46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell46.Weight = 0.074906375725478314D;
         //
         // xrTableCell47
         //
         this.xrTableCell47.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell47.Name = "xrTableCell47";
         this.xrTableCell47.StylePriority.UseBorders = false;
         this.xrTableCell47.StylePriority.UseTextAlignment = false;
         this.xrTableCell47.Text = "Категорія";
         this.xrTableCell47.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell47.Weight = 0.13108615379894739D;
         //
         // xrTableCell48
         //
         this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell48.Name = "xrTableCell48";
         this.xrTableCell48.StylePriority.UseBorders = false;
         this.xrTableCell48.StylePriority.UseTextAlignment = false;
         this.xrTableCell48.Text = "Статус";
         this.xrTableCell48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell48.Weight = 0.14981274624206087D;
         //
         // hdrTotalCost
         //
         this.hdrTotalCost.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.hdrTotalCost.Name = "hdrTotalCost";
         this.hdrTotalCost.StylePriority.UseBorders = false;
         this.hdrTotalCost.StylePriority.UseTextAlignment = false;
         this.hdrTotalCost.Tag = "TotalCost";
         this.hdrTotalCost.Text = "Загальна вартість робіт";
         this.hdrTotalCost.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.hdrTotalCost.Weight = 0.093632966308272114D;
         //
         // xrTableCell50
         //
         this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell50.Name = "xrTableCell50";
         this.xrTableCell50.StylePriority.UseBorders = false;
         this.xrTableCell50.StylePriority.UseTextAlignment = false;
         this.xrTableCell50.Tag = "PaidOn";
         this.xrTableCell50.Text = "Аванс";
         this.xrTableCell50.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell50.Weight = 0.093632966122240036D;
         //
         // xrTableCell51
         //
         this.xrTableCell51.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell51.Name = "xrTableCell51";
         this.xrTableCell51.StylePriority.UseBorders = false;
         this.xrTableCell51.StylePriority.UseTextAlignment = false;
         this.xrTableCell51.Tag = "LeftOn";
         this.xrTableCell51.Text = "Залишено на місці";
         this.xrTableCell51.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell51.Weight = 0.093632966029224107D;
         //
         // xrTableCell52
         //
         this.xrTableCell52.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell52.Name = "xrTableCell52";
         this.xrTableCell52.StylePriority.UseBorders = false;
         this.xrTableCell52.StylePriority.UseTextAlignment = false;
         this.xrTableCell52.Tag = "Approval1";
         this.xrTableCell52.Text = "Погодження 1";
         this.xrTableCell52.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell52.Weight = 0.093632965982716088D;
         //
         // xrTableCell53
         //
         this.xrTableCell53.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell53.Name = "xrTableCell53";
         this.xrTableCell53.StylePriority.UseBorders = false;
         this.xrTableCell53.StylePriority.UseTextAlignment = false;
         this.xrTableCell53.Tag = "KailasPaid1";
         this.xrTableCell53.Text = "Оплачено на ПП Кайлас-К";
         this.xrTableCell53.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell53.Weight = 0.093632965959462189D;
         //
         // xrTableCell54
         //
         this.xrTableCell54.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell54.Name = "xrTableCell54";
         this.xrTableCell54.StylePriority.UseBorders = false;
         this.xrTableCell54.StylePriority.UseTextAlignment = false;
         this.xrTableCell54.Tag = "KailasDue";
         this.xrTableCell54.Text = "Заборгованість по ПП Кайлас-К";
         this.xrTableCell54.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell54.Weight = 0.093632965947835156D;
         //
         // xrTableCell55
         //
         this.xrTableCell55.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell55.Name = "xrTableCell55";
         this.xrTableCell55.StylePriority.UseBorders = false;
         this.xrTableCell55.StylePriority.UseTextAlignment = false;
         this.xrTableCell55.Tag = "PaidDue";
         this.xrTableCell55.Text = "Опл. заборгованість (після виїзду)";
         this.xrTableCell55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell55.Weight = 0.093632965942021584D;
         //
         // xrTableCell56
         //
         this.xrTableCell56.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell56.Name = "xrTableCell56";
         this.xrTableCell56.StylePriority.UseBorders = false;
         this.xrTableCell56.StylePriority.UseTextAlignment = false;
         this.xrTableCell56.Tag = "Approval2";
         this.xrTableCell56.Text = "Погодження 2";
         this.xrTableCell56.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell56.Weight = 0.093632965939114854D;
         //
         // xrTableCell57
         //
         this.xrTableCell57.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell57.Name = "xrTableCell57";
         this.xrTableCell57.StylePriority.UseBorders = false;
         this.xrTableCell57.StylePriority.UseTextAlignment = false;
         this.xrTableCell57.Tag = "KailasPaid2";
         this.xrTableCell57.Text = "Оплачено на ПП Кайлас-К 2";
         this.xrTableCell57.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell57.Weight = 0.093632965937661489D;
         //
         // xrTableCell58
         //
         this.xrTableCell58.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell58.Name = "xrTableCell58";
         this.xrTableCell58.StylePriority.UseBorders = false;
         this.xrTableCell58.StylePriority.UseTextAlignment = false;
         this.xrTableCell58.Tag = "SalaryCalculated";
         this.xrTableCell58.Text = "Нараховано";
         this.xrTableCell58.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell58.Weight = 0.093632961067487558D;
         //
         // xrTableCell59
         //
         this.xrTableCell59.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell59.Name = "xrTableCell59";
         this.xrTableCell59.StylePriority.UseBorders = false;
         this.xrTableCell59.StylePriority.UseTextAlignment = false;
         this.xrTableCell59.Tag = "SalaryPaidDate";
         this.xrTableCell59.Text = "Оплочено";
         this.xrTableCell59.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell59.Weight = 0.11235955169479248D;
         //
         // xrTableCell60
         //
         this.xrTableCell60.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell60.Name = "xrTableCell60";
         this.xrTableCell60.StylePriority.UseBorders = false;
         this.xrTableCell60.StylePriority.UseTextAlignment = false;
         this.xrTableCell60.Tag = "CalculatedMain";
         this.xrTableCell60.Text = "Нараховано ХМЛ";
         this.xrTableCell60.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell60.Weight = 0.093632959367995469D;
         //
         // xrTableCell61
         //
         this.xrTableCell61.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTableCell61.Name = "xrTableCell61";
         this.xrTableCell61.StylePriority.UseBorders = false;
         this.xrTableCell61.StylePriority.UseTextAlignment = false;
         this.xrTableCell61.Tag = "PaidMainDate";
         this.xrTableCell61.Text = "Оплочено ХМЛ";
         this.xrTableCell61.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell61.Weight = 0.13483126121907518D;
         //
         // GroupHeader1
         //
         this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblGroupDate,
         this.tblActHeader1});
         this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("cfOnDate", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
         this.GroupHeader1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WholePage;
         this.GroupHeader1.HeightF = 30.5F;
         this.GroupHeader1.Name = "GroupHeader1";
         this.GroupHeader1.RepeatEveryPage = true;
         //
         // tblGroupDate
         //
         this.tblGroupDate.BackColor = System.Drawing.Color.PapayaWhip;
         this.tblGroupDate.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
         this.tblGroupDate.LocationFloat = new DevExpress.Utils.PointFloat(0F, 15.5F);
         this.tblGroupDate.Name = "tblGroupDate";
         this.tblGroupDate.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1});
         this.tblGroupDate.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblGroupDate.StylePriority.UseBackColor = false;
         this.tblGroupDate.StylePriority.UseBorders = false;
         //
         // xrTableRow1
         //
         this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell3});
         this.xrTableRow1.Name = "xrTableRow1";
         this.xrTableRow1.Weight = 1D;
         //
         // xrTableCell1
         //
         this.xrTableCell1.Borders = DevExpress.XtraPrinting.BorderSide.Left;
         this.xrTableCell1.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell1.Name = "xrTableCell1";
         this.xrTableCell1.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 0, 0, 0, 100F);
         this.xrTableCell1.StylePriority.UseBorders = false;
         this.xrTableCell1.StylePriority.UseFont = false;
         this.xrTableCell1.StylePriority.UsePadding = false;
         this.xrTableCell1.StylePriority.UseTextAlignment = false;
         this.xrTableCell1.Text = "Дата виїзду:";
         this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell1.Weight = 0.056179775280898875D;
         //
         // xrTableCell3
         //
         this.xrTableCell3.Borders = DevExpress.XtraPrinting.BorderSide.Right;
         this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cfOnDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell3.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell3.Name = "xrTableCell3";
         this.xrTableCell3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
         this.xrTableCell3.StylePriority.UseBorders = false;
         this.xrTableCell3.StylePriority.UseFont = false;
         this.xrTableCell3.StylePriority.UsePadding = false;
         this.xrTableCell3.Weight = 0.9438202247191011D;
         //
         // tblActHeader1
         //
         this.tblActHeader1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblActHeader1.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.tblActHeader1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActHeader1.Name = "tblActHeader1";
         this.tblActHeader1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4});
         this.tblActHeader1.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblActHeader1.StylePriority.UseBorders = false;
         this.tblActHeader1.StylePriority.UseFont = false;
         this.tblActHeader1.StylePriority.UseTextAlignment = false;
         this.tblActHeader1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow4
         //
         this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell16,
         this.xrTableCell17,
         this.xrTableCell18,
         this.xrTableCell19,
         this.xrTableCell20,
         this.xrTableCell21,
         this.xrTableCell26,
         this.xrTableCell28,
         this.xrTableCell29,
         this.xrTableCell30,
         this.xrTableCell31,
         this.xrTableCell32,
         this.xrTableCell33,
         this.xrTableCell34,
         this.xrTableCell35,
         this.xrTableCell36,
         this.xrTableCell37,
         this.xrTableCell38,
         this.xrTableCell39});
         this.xrTableRow4.Name = "xrTableRow4";
         this.xrTableRow4.Weight = 1D;
         //
         // xrTableCell13
         //
         this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell13.Name = "xrTableCell13";
         this.xrTableCell13.StylePriority.UseBorders = false;
         this.xrTableCell13.Text = "1";
         this.xrTableCell13.Weight = 0.33707868689518711D;
         //
         // xrTableCell14
         //
         this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell14.Name = "xrTableCell14";
         this.xrTableCell14.StylePriority.UseBorders = false;
         this.xrTableCell14.Text = "2";
         this.xrTableCell14.Weight = 0.22471907062271032D;
         //
         // xrTableCell15
         //
         this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell15.Name = "xrTableCell15";
         this.xrTableCell15.StylePriority.UseBorders = false;
         this.xrTableCell15.Text = "3";
         this.xrTableCell15.Weight = 0.22471913729657511D;
         //
         // xrTableCell16
         //
         this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell16.Name = "xrTableCell16";
         this.xrTableCell16.StylePriority.UseBorders = false;
         this.xrTableCell16.Text = "4";
         this.xrTableCell16.Weight = 0.37453185898241342D;
         //
         // xrTableCell17
         //
         this.xrTableCell17.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell17.Name = "xrTableCell17";
         this.xrTableCell17.StylePriority.UseBorders = false;
         this.xrTableCell17.StylePriority.UseTextAlignment = false;
         this.xrTableCell17.Text = "5";
         this.xrTableCell17.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell17.Weight = 0.13108616421673858D;
         //
         // xrTableCell18
         //
         this.xrTableCell18.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell18.Name = "xrTableCell18";
         this.xrTableCell18.StylePriority.UseBorders = false;
         this.xrTableCell18.StylePriority.UseTextAlignment = false;
         this.xrTableCell18.Text = "6";
         this.xrTableCell18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell18.Weight = 0.074906378701990128D;
         //
         // xrTableCell19
         //
         this.xrTableCell19.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell19.Name = "xrTableCell19";
         this.xrTableCell19.StylePriority.UseBorders = false;
         this.xrTableCell19.StylePriority.UseTextAlignment = false;
         this.xrTableCell19.Text = "7";
         this.xrTableCell19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell19.Weight = 0.074906375725478314D;
         //
         // xrTableCell20
         //
         this.xrTableCell20.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell20.Name = "xrTableCell20";
         this.xrTableCell20.StylePriority.UseBorders = false;
         this.xrTableCell20.StylePriority.UseTextAlignment = false;
         this.xrTableCell20.Text = "8";
         this.xrTableCell20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell20.Weight = 0.13108615379894739D;
         //
         // xrTableCell21
         //
         this.xrTableCell21.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell21.Name = "xrTableCell21";
         this.xrTableCell21.StylePriority.UseBorders = false;
         this.xrTableCell21.StylePriority.UseTextAlignment = false;
         this.xrTableCell21.Text = "9";
         this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell21.Weight = 0.14981274624206087D;
         //
         // xrTableCell26
         //
         this.xrTableCell26.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell26.Name = "xrTableCell26";
         this.xrTableCell26.StylePriority.UseBorders = false;
         this.xrTableCell26.StylePriority.UseTextAlignment = false;
         this.xrTableCell26.Tag = "TotalCost";
         this.xrTableCell26.Text = "10";
         this.xrTableCell26.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell26.Weight = 0.093632966308272114D;
         //
         // xrTableCell28
         //
         this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell28.Name = "xrTableCell28";
         this.xrTableCell28.StylePriority.UseBorders = false;
         this.xrTableCell28.StylePriority.UseTextAlignment = false;
         this.xrTableCell28.Tag = "PaidOn";
         this.xrTableCell28.Text = "11";
         this.xrTableCell28.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell28.Weight = 0.093632966122240036D;
         //
         // xrTableCell29
         //
         this.xrTableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell29.Name = "xrTableCell29";
         this.xrTableCell29.StylePriority.UseBorders = false;
         this.xrTableCell29.StylePriority.UseTextAlignment = false;
         this.xrTableCell29.Tag = "LeftOn";
         this.xrTableCell29.Text = "12";
         this.xrTableCell29.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell29.Weight = 0.093632966029224107D;
         //
         // xrTableCell30
         //
         this.xrTableCell30.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell30.Name = "xrTableCell30";
         this.xrTableCell30.StylePriority.UseBorders = false;
         this.xrTableCell30.StylePriority.UseTextAlignment = false;
         this.xrTableCell30.Tag = "Approval1";
         this.xrTableCell30.Text = "13";
         this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell30.Weight = 0.093632965982716088D;
         //
         // xrTableCell31
         //
         this.xrTableCell31.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell31.Name = "xrTableCell31";
         this.xrTableCell31.StylePriority.UseBorders = false;
         this.xrTableCell31.StylePriority.UseTextAlignment = false;
         this.xrTableCell31.Tag = "KailasPaid1";
         this.xrTableCell31.Text = "14";
         this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell31.Weight = 0.093632965959462189D;
         //
         // xrTableCell32
         //
         this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell32.Name = "xrTableCell32";
         this.xrTableCell32.StylePriority.UseBorders = false;
         this.xrTableCell32.StylePriority.UseTextAlignment = false;
         this.xrTableCell32.Tag = "KailasDue";
         this.xrTableCell32.Text = "15";
         this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell32.Weight = 0.093632965947835156D;
         //
         // xrTableCell33
         //
         this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell33.Name = "xrTableCell33";
         this.xrTableCell33.StylePriority.UseBorders = false;
         this.xrTableCell33.StylePriority.UseTextAlignment = false;
         this.xrTableCell33.Tag = "PaidDue";
         this.xrTableCell33.Text = "16";
         this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell33.Weight = 0.093632965942021584D;
         //
         // xrTableCell34
         //
         this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell34.Name = "xrTableCell34";
         this.xrTableCell34.StylePriority.UseBorders = false;
         this.xrTableCell34.StylePriority.UseTextAlignment = false;
         this.xrTableCell34.Tag = "Approval2";
         this.xrTableCell34.Text = "17";
         this.xrTableCell34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell34.Weight = 0.093632965939114854D;
         //
         // xrTableCell35
         //
         this.xrTableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell35.Name = "xrTableCell35";
         this.xrTableCell35.StylePriority.UseBorders = false;
         this.xrTableCell35.StylePriority.UseTextAlignment = false;
         this.xrTableCell35.Tag = "KailasPaid2";
         this.xrTableCell35.Text = "18";
         this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell35.Weight = 0.093632965937661489D;
         //
         // xrTableCell36
         //
         this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell36.Name = "xrTableCell36";
         this.xrTableCell36.StylePriority.UseBorders = false;
         this.xrTableCell36.StylePriority.UseTextAlignment = false;
         this.xrTableCell36.Tag = "SalaryCalculated";
         this.xrTableCell36.Text = "19";
         this.xrTableCell36.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell36.Weight = 0.093632961067487558D;
         //
         // xrTableCell37
         //
         this.xrTableCell37.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell37.Name = "xrTableCell37";
         this.xrTableCell37.StylePriority.UseBorders = false;
         this.xrTableCell37.StylePriority.UseTextAlignment = false;
         this.xrTableCell37.Tag = "SalaryPaidDate";
         this.xrTableCell37.Text = "20";
         this.xrTableCell37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell37.Weight = 0.11235955169479248D;
         //
         // xrTableCell38
         //
         this.xrTableCell38.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell38.Name = "xrTableCell38";
         this.xrTableCell38.StylePriority.UseBorders = false;
         this.xrTableCell38.StylePriority.UseTextAlignment = false;
         this.xrTableCell38.Tag = "CalculatedMain";
         this.xrTableCell38.Text = "21";
         this.xrTableCell38.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell38.Weight = 0.093632959367995469D;
         //
         // xrTableCell39
         //
         this.xrTableCell39.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell39.Name = "xrTableCell39";
         this.xrTableCell39.StylePriority.UseBorders = false;
         this.xrTableCell39.StylePriority.UseTextAlignment = false;
         this.xrTableCell39.Tag = "PaidMainDate";
         this.xrTableCell39.Text = "22";
         this.xrTableCell39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell39.Weight = 0.13483126121907518D;
         //
         // DetailReport
         //
         this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.detailDocuments,
         this.GroupHeader2,
         this.GroupFooter1});
         this.DetailReport.DataMember = "Documents";
         this.DetailReport.DataSource = this.srcActs;
         this.DetailReport.Level = 0;
         this.DetailReport.Name = "DetailReport";
         //
         // detailDocuments
         //
         this.detailDocuments.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblDocument});
         this.detailDocuments.HeightF = 15F;
         this.detailDocuments.KeepTogether = true;
         this.detailDocuments.MultiColumn.ColumnSpacing = 10F;
         this.detailDocuments.MultiColumn.ColumnWidth = 400F;
         this.detailDocuments.MultiColumn.Mode = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
         this.detailDocuments.Name = "detailDocuments";
         this.detailDocuments.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.detailDocuments_BeforePrint);
         //
         // tblDocument
         //
         this.tblDocument.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblDocument.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblDocument.Name = "tblDocument";
         this.tblDocument.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow7});
         this.tblDocument.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblDocument.StylePriority.UseBorders = false;
         //
         // xrTableRow7
         //
         this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell62,
         this.xrTableCell64,
         this.xrTableCell65});
         this.xrTableRow7.Name = "xrTableRow7";
         this.xrTableRow7.Weight = 1D;
         //
         // xrTableCell62
         //
         this.xrTableCell62.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Documents.DocumentName")});
         this.xrTableCell62.Name = "xrTableCell62";
         this.xrTableCell62.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
         this.xrTableCell62.StylePriority.UsePadding = false;
         this.xrTableCell62.Text = "xrTableCell62";
         this.xrTableCell62.Weight = 1.5D;
         //
         // xrTableCell64
         //
         this.xrTableCell64.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Documents.DocValue")});
         this.xrTableCell64.Name = "xrTableCell64";
         this.xrTableCell64.StylePriority.UseTextAlignment = false;
         this.xrTableCell64.Text = "xrTableCell64";
         this.xrTableCell64.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell64.Weight = 0.5D;
         //
         // xrTableCell65
         //
         this.xrTableCell65.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Documents.Comment")});
         this.xrTableCell65.Name = "xrTableCell65";
         this.xrTableCell65.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
         this.xrTableCell65.StylePriority.UsePadding = false;
         this.xrTableCell65.StylePriority.UseTextAlignment = false;
         this.xrTableCell65.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell65.Weight = 6.01D;
         //
         // GroupHeader2
         //
         this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1});
         this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("GroupName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)});
         this.GroupHeader2.HeightF = 15F;
         this.GroupHeader2.KeepTogether = true;
         this.GroupHeader2.Name = "GroupHeader2";
         this.GroupHeader2.RepeatEveryPage = true;
         //
         // xrTable1
         //
         this.xrTable1.BackColor = System.Drawing.Color.Gainsboro;
         this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable1.Name = "xrTable1";
         this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow6});
         this.xrTable1.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.xrTable1.StylePriority.UseBackColor = false;
         //
         // xrTableRow6
         //
         this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell63});
         this.xrTableRow6.Name = "xrTableRow6";
         this.xrTableRow6.Weight = 1D;
         //
         // xrTableCell63
         //
         this.xrTableCell63.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell63.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Documents.GroupName")});
         this.xrTableCell63.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell63.Name = "xrTableCell63";
         this.xrTableCell63.StylePriority.UseBorders = false;
         this.xrTableCell63.StylePriority.UseFont = false;
         this.xrTableCell63.Text = "xrTableCell63";
         this.xrTableCell63.Weight = 1D;
         //
         // GroupFooter1
         //
         this.GroupFooter1.HeightF = 3F;
         this.GroupFooter1.Name = "GroupFooter1";
         //
         // srcActs
         //
         this.srcActs.DataSource = typeof(Kayflow.Reports.ActCollection);
         //
         // GroupFooter2
         //
         this.GroupFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblActSummary});
         this.GroupFooter2.HeightF = 15F;
         this.GroupFooter2.Name = "GroupFooter2";
         //
         // tblActSummary
         //
         this.tblActSummary.BackColor = System.Drawing.Color.PaleGoldenrod;
         this.tblActSummary.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblActSummary.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActSummary.Name = "tblActSummary";
         this.tblActSummary.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3});
         this.tblActSummary.SizeF = new System.Drawing.SizeF(1602F, 15F);
         this.tblActSummary.StylePriority.UseBackColor = false;
         this.tblActSummary.StylePriority.UseBorders = false;
         //
         // xrTableRow3
         //
         this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell49,
         this.xrTableCell25,
         this.sumTotalCost,
         this.sumPaidOn,
         this.sumLeftOn,
         this.sumApproval1,
         this.sumKailasPaid1,
         this.sumKailasDue,
         this.sumPaidDue,
         this.sumApproval2,
         this.sumKailasPaid2,
         this.xrTableCell27});
         this.xrTableRow3.Name = "xrTableRow3";
         this.xrTableRow3.Weight = 1D;
         //
         // xrTableCell49
         //
         this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell49.Name = "xrTableCell49";
         this.xrTableCell49.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
         this.xrTableCell49.StylePriority.UseBorders = false;
         this.xrTableCell49.StylePriority.UsePadding = false;
         this.xrTableCell49.StylePriority.UseTextAlignment = false;
         this.xrTableCell49.Text = "Всього за";
         this.xrTableCell49.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell49.Weight = 1.5730338221632141D;
         //
         // xrTableCell25
         //
         this.xrTableCell25.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cfOnDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell25.Name = "xrTableCell25";
         this.xrTableCell25.StylePriority.UseBorders = false;
         this.xrTableCell25.Weight = 0.14981261978435156D;
         //
         // sumTotalCost
         //
         this.sumTotalCost.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "TotalCost")});
         this.sumTotalCost.Name = "sumTotalCost";
         this.sumTotalCost.StylePriority.UseTextAlignment = false;
         xrSummary1.FormatString = "{0:#.00}";
         xrSummary1.IgnoreNullValues = true;
         xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumTotalCost.Summary = xrSummary1;
         this.sumTotalCost.Tag = "TotalCost";
         this.sumTotalCost.Text = "sumTotalCost";
         this.sumTotalCost.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumTotalCost.Weight = 0.093633073099543551D;
         //
         // sumPaidOn
         //
         this.sumPaidOn.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidOn")});
         this.sumPaidOn.Name = "sumPaidOn";
         this.sumPaidOn.StylePriority.UseTextAlignment = false;
         xrSummary2.FormatString = "{0:#.00}";
         xrSummary2.IgnoreNullValues = true;
         xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumPaidOn.Summary = xrSummary2;
         this.sumPaidOn.Text = "sumPaidOn";
         this.sumPaidOn.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumPaidOn.Weight = 0.093632958801498078D;
         //
         // sumLeftOn
         //
         this.sumLeftOn.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "LeftOn")});
         this.sumLeftOn.Name = "sumLeftOn";
         this.sumLeftOn.StylePriority.UseTextAlignment = false;
         xrSummary3.FormatString = "{0:#.00}";
         xrSummary3.IgnoreNullValues = true;
         xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumLeftOn.Summary = xrSummary3;
         this.sumLeftOn.Tag = "PaidOn";
         this.sumLeftOn.Text = "sumLeftOn";
         this.sumLeftOn.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumLeftOn.Weight = 0.0936330730995435D;
         //
         // sumApproval1
         //
         this.sumApproval1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Approval1")});
         this.sumApproval1.Name = "sumApproval1";
         this.sumApproval1.StylePriority.UseTextAlignment = false;
         xrSummary4.FormatString = "{0:#.00}";
         xrSummary4.IgnoreNullValues = true;
         xrSummary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumApproval1.Summary = xrSummary4;
         this.sumApproval1.Tag = "Approval1";
         this.sumApproval1.Text = "sumApproval1";
         this.sumApproval1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumApproval1.Weight = 0.09363295880149819D;
         //
         // sumKailasPaid1
         //
         this.sumKailasPaid1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasPaid1")});
         this.sumKailasPaid1.Name = "sumKailasPaid1";
         this.sumKailasPaid1.StylePriority.UseTextAlignment = false;
         xrSummary5.FormatString = "{0:#.00}";
         xrSummary5.IgnoreNullValues = true;
         xrSummary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumKailasPaid1.Summary = xrSummary5;
         this.sumKailasPaid1.Tag = "KailasPaid1";
         this.sumKailasPaid1.Text = "sumKailasPaid1";
         this.sumKailasPaid1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumKailasPaid1.Weight = 0.093633187397588968D;
         //
         // sumKailasDue
         //
         this.sumKailasDue.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasDue")});
         this.sumKailasDue.Name = "sumKailasDue";
         this.sumKailasDue.StylePriority.UseTextAlignment = false;
         xrSummary6.FormatString = "{0:#.00}";
         xrSummary6.IgnoreNullValues = true;
         xrSummary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumKailasDue.Summary = xrSummary6;
         this.sumKailasDue.Tag = "KailasDue";
         this.sumKailasDue.Text = "sumKailasDue";
         this.sumKailasDue.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumKailasDue.Weight = 0.093632730205407244D;
         //
         // sumPaidDue
         //
         this.sumPaidDue.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "PaidDue")});
         this.sumPaidDue.Name = "sumPaidDue";
         this.sumPaidDue.StylePriority.UseTextAlignment = false;
         xrSummary7.FormatString = "{0:#.00}";
         xrSummary7.IgnoreNullValues = true;
         xrSummary7.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumPaidDue.Summary = xrSummary7;
         this.sumPaidDue.Tag = "PaidDue";
         this.sumPaidDue.Text = "sumPaidDue";
         this.sumPaidDue.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumPaidDue.Weight = 0.093633187397588913D;
         //
         // sumApproval2
         //
         this.sumApproval2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Approval2")});
         this.sumApproval2.Name = "sumApproval2";
         this.sumApproval2.StylePriority.UseTextAlignment = false;
         xrSummary8.FormatString = "{0:#.00}";
         xrSummary8.IgnoreNullValues = true;
         xrSummary8.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumApproval2.Summary = xrSummary8;
         this.sumApproval2.Tag = "Approval2";
         this.sumApproval2.Text = "sumApproval2";
         this.sumApproval2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumApproval2.Weight = 0.093632730205407272D;
         //
         // sumKailasPaid2
         //
         this.sumKailasPaid2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "KailasPaid2")});
         this.sumKailasPaid2.Name = "sumKailasPaid2";
         this.sumKailasPaid2.StylePriority.UseTextAlignment = false;
         xrSummary9.FormatString = "{0:#.00}";
         xrSummary9.IgnoreNullValues = true;
         xrSummary9.Running = DevExpress.XtraReports.UI.SummaryRunning.Group;
         this.sumKailasPaid2.Summary = xrSummary9;
         this.sumKailasPaid2.Tag = "KailasPaid2";
         this.sumKailasPaid2.Text = "sumKailasPaid2";
         this.sumKailasPaid2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.sumKailasPaid2.Weight = 0.093633187397588968D;
         //
         // xrTableCell27
         //
         this.xrTableCell27.Name = "xrTableCell27";
         this.xrTableCell27.Weight = 0.43445647164676959D;
         //
         // cfOnDate
         //
         this.cfOnDate.Expression = "GetDate([MeteringDate])";
         this.cfOnDate.Name = "cfOnDate";
         //
         // ActMainReport
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.GroupHeader1,
         this.DetailReport,
         this.GroupFooter2});
         this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.cfOnDate});
         this.DataSource = this.srcActs;
         this.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.Landscape = true;
         this.Margins = new System.Drawing.Printing.Margins(26, 26, 50, 50);
         this.PageHeight = 1169;
         this.PageWidth = 1654;
         this.PaperKind = System.Drawing.Printing.PaperKind.A3;
         this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.Version = "15.1";
         this.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.ActMainReport_BeforePrint);
         ((System.ComponentModel.ISupportInitialize)(this.tblActs)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActHeader)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblGroupDate)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActHeader1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblDocument)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.srcActs)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblActSummary)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery1 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1 = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery2 = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2 = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3 = new DevExpress.DataAccess.Sql.QueryParameter();
     System.ComponentModel.ComponentResourceManager resources       = new System.ComponentModel.ComponentResourceManager(typeof(CompanyCOA));
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.companyid      = new DevExpress.XtraReports.Parameters.Parameter();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.financialyear  = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrLabel1,
         this.xrTable2
     });
     this.TopMargin.Name = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.HeightF = 25F;
     this.Detail.Name    = "Detail";
     //
     // companyid
     //
     this.companyid.Description = "companyid";
     this.companyid.Name        = "companyid";
     this.companyid.Type        = typeof(long);
     this.companyid.ValueInfo   = "204";
     this.companyid.Visible     = false;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "ERPDB_Connection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     customSqlQuery1.Name  = "Query";
     queryParameter1.Name  = "companyid";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("?companyid", typeof(long));
     customSqlQuery1.Parameters.Add(queryParameter1);
     customSqlQuery1.Sql = "select financialyearid, name from finance_setup_financialyear where CompanyId = @" +
                           "companyid";
     customSqlQuery2.Name  = "Query_1";
     queryParameter2.Name  = "companyid";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("?companyid", typeof(long));
     queryParameter3.Name  = "financialyear";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("?financialyear", typeof(long));
     customSqlQuery2.Parameters.Add(queryParameter2);
     customSqlQuery2.Parameters.Add(queryParameter3);
     customSqlQuery2.Sql = "select * from finance_account where companyid = @companyid and financialyearid = " +
                           "@financialyear order by accountcode";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         customSqlQuery1,
         customSqlQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // financialyear
     //
     this.financialyear.Description           = "financialyear";
     dynamicListLookUpSettings1.DataMember    = "Query";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "name";
     dynamicListLookUpSettings1.SortMember    = null;
     dynamicListLookUpSettings1.ValueMember   = "financialyearid";
     this.financialyear.LookUpSettings        = dynamicListLookUpSettings1;
     this.financialyear.Name      = "financialyear";
     this.financialyear.Type      = typeof(long);
     this.financialyear.ValueInfo = "30";
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_1].[AccountCode]")
     });
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell1.Text      = "xrTableCell1";
     this.xrTableCell1.Weight    = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_1].[Description]")
     });
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell2.Text      = "xrTableCell2";
     this.xrTableCell2.Weight    = 1D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_1].[IsGeneralOrDetail]")
     });
     this.xrTableCell3.Multiline = true;
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell3.Text      = "xrTableCell3";
     this.xrTableCell3.Weight    = 1D;
     //
     // xrTable2
     //
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 75F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Multiline = true;
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell4.Text      = "Account Code";
     this.xrTableCell4.Weight    = 1D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell5.Text      = "Account Name";
     this.xrTableCell5.Weight    = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell6.Text      = "Is General";
     this.xrTableCell6.Weight    = 1D;
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 29.12499F);
     this.xrLabel1.Multiline     = true;
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel1.Text          = "Financial Year:";
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query].[name]")
     });
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(100F, 29.12499F);
     this.xrLabel2.Multiline     = true;
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel2.Text          = "xrLabel2";
     //
     // CompanyCOA
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Query_1";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.companyid,
         this.financialyear
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 20
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter4  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter5  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter6  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter7  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter8  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter9  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter10 = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter11 = new DevExpress.DataAccess.Sql.QueryParameter();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(TransactionDetailsByDetailAccount));
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupHeader1   = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter1   = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.NullParam      = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.FromDate       = new DevExpress.XtraReports.Parameters.Parameter();
     this.ToDate         = new DevExpress.XtraReports.Parameters.Parameter();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.DetailAccount  = new DevExpress.XtraReports.Parameters.Parameter();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10      = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Name = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF = 25F;
     this.Detail.Name    = "Detail";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.GroupHeader1.Name = "GroupHeader1";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7,
         this.xrLabel6
     });
     this.GroupFooter1.Name = "GroupFooter1";
     //
     // NullParam
     //
     this.NullParam.AllowNull   = true;
     this.NullParam.Description = "NullParam";
     this.NullParam.Name        = "NullParam";
     this.NullParam.Type        = typeof(long);
     this.NullParam.Visible     = false;
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Finance_GetDetailAccounts].[Name]")
     });
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(260.4167F, 10.00001F);
     this.xrLabel1.Multiline     = true;
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel1.Text          = "xrLabel1";
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "?FromDate")
     });
     this.xrLabel2.LocationFloat    = new DevExpress.Utils.PointFloat(103.125F, 49.95832F);
     this.xrLabel2.Multiline        = true;
     this.xrLabel2.Name             = "xrLabel2";
     this.xrLabel2.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel2.SizeF            = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel2.Text             = "xrLabel2";
     this.xrLabel2.TextFormatString = "{0:dd-MMM-yy}";
     //
     // xrLabel3
     //
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(3.125F, 49.95832F);
     this.xrLabel3.Multiline     = true;
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel3.Text          = "FromDate";
     //
     // xrLabel4
     //
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(443.75F, 49.95832F);
     this.xrLabel4.Multiline     = true;
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel4.Text          = "ToDate";
     //
     // xrLabel5
     //
     this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "?ToDate")
     });
     this.xrLabel5.LocationFloat    = new DevExpress.Utils.PointFloat(543.75F, 49.95832F);
     this.xrLabel5.Multiline        = true;
     this.xrLabel5.Name             = "xrLabel5";
     this.xrLabel5.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrLabel5.SizeF            = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel5.Text             = "xrLabel5";
     this.xrLabel5.TextFormatString = "{0:dd-MMM-yy}";
     //
     // FromDate
     //
     this.FromDate.Description = "FromDate";
     this.FromDate.Name        = "FromDate";
     this.FromDate.Type        = typeof(System.DateTime);
     this.FromDate.ValueInfo   = "2001-01-01";
     //
     // ToDate
     //
     this.ToDate.Description = "ToDate";
     this.ToDate.Name        = "ToDate";
     this.ToDate.Type        = typeof(System.DateTime);
     this.ToDate.ValueInfo   = "2018-12-31";
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "ERPDB_Connection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name = "Finance_TransactionsByDetailAccountCode";
     queryParameter1.Name  = "@FromDate";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("?FromDate", typeof(System.DateTime));
     queryParameter2.Name  = "@ToDate";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("?ToDate", typeof(System.DateTime));
     queryParameter3.Name  = "@AccountId";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("?DetailAccount", typeof(long));
     queryParameter4.Name  = "@companyid";
     queryParameter4.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     queryParameter5.Name  = "@countryid";
     queryParameter5.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     queryParameter6.Name  = "@branchid";
     queryParameter6.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     queryParameter7.Name  = "@cityid";
     queryParameter7.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter7.Value = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.Parameters.Add(queryParameter2);
     storedProcQuery1.Parameters.Add(queryParameter3);
     storedProcQuery1.Parameters.Add(queryParameter4);
     storedProcQuery1.Parameters.Add(queryParameter5);
     storedProcQuery1.Parameters.Add(queryParameter6);
     storedProcQuery1.Parameters.Add(queryParameter7);
     storedProcQuery1.StoredProcName = "Finance_TransactionsByDetailAccountCode";
     storedProcQuery2.Name           = "Finance_GetDetailAccounts";
     queryParameter8.Name            = "@companyid";
     queryParameter8.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter8.Value           = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     queryParameter9.Name            = "@countryid";
     queryParameter9.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter9.Value           = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     queryParameter10.Name           = "@branchid";
     queryParameter10.Type           = typeof(DevExpress.DataAccess.Expression);
     queryParameter10.Value          = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     queryParameter11.Name           = "@cityid";
     queryParameter11.Type           = typeof(DevExpress.DataAccess.Expression);
     queryParameter11.Value          = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     storedProcQuery2.Parameters.Add(queryParameter8);
     storedProcQuery2.Parameters.Add(queryParameter9);
     storedProcQuery2.Parameters.Add(queryParameter10);
     storedProcQuery2.Parameters.Add(queryParameter11);
     storedProcQuery2.StoredProcName = "Finance_GetDetailAccounts";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1,
         storedProcQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // DetailAccount
     //
     this.DetailAccount.Description           = "DetailAccount";
     dynamicListLookUpSettings1.DataMember    = "Finance_GetDetailAccounts";
     dynamicListLookUpSettings1.DataSource    = this.sqlDataSource1;
     dynamicListLookUpSettings1.DisplayMember = "Name";
     dynamicListLookUpSettings1.SortMember    = null;
     dynamicListLookUpSettings1.ValueMember   = "AccountId";
     this.DetailAccount.LookUpSettings        = dynamicListLookUpSettings1;
     this.DetailAccount.Name      = "DetailAccount";
     this.DetailAccount.Type      = typeof(long);
     this.DetailAccount.ValueInfo = "0";
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 72.95831F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell1.Text      = "Voucher Date";
     this.xrTableCell1.Weight    = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell2.Text      = "Voucher Type";
     this.xrTableCell2.Weight    = 1D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Multiline = true;
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell3.Text      = "Voucher Number";
     this.xrTableCell3.Weight    = 1D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Multiline = true;
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell4.StylePriority.UsePadding = false;
     this.xrTableCell4.Text   = "Narration";
     this.xrTableCell4.Weight = 1D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell5.StylePriority.UsePadding = false;
     this.xrTableCell5.Text   = "Debit";
     this.xrTableCell5.Weight = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell6.StylePriority.UsePadding = false;
     this.xrTableCell6.Text   = "Credit";
     this.xrTableCell6.Weight = 1D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Multiline = true;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell7.StylePriority.UsePadding = false;
     this.xrTableCell7.Text   = "Balance";
     this.xrTableCell7.Weight = 1D;
     //
     // xrTable2
     //
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Voucher Date]")
     });
     this.xrTableCell8.Multiline        = true;
     this.xrTableCell8.Name             = "xrTableCell8";
     this.xrTableCell8.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell8.Text             = "xrTableCell1";
     this.xrTableCell8.TextFormatString = "{0:dd-MMM-yy}";
     this.xrTableCell8.Weight           = 1D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Voucher Type]")
     });
     this.xrTableCell9.Multiline = true;
     this.xrTableCell9.Name      = "xrTableCell9";
     this.xrTableCell9.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell9.Text      = "xrTableCell2";
     this.xrTableCell9.Weight    = 1D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Voucher Code]")
     });
     this.xrTableCell10.Multiline = true;
     this.xrTableCell10.Name      = "xrTableCell10";
     this.xrTableCell10.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell10.Text      = "xrTableCell3";
     this.xrTableCell10.Weight    = 1D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Narration]")
     });
     this.xrTableCell11.Multiline = true;
     this.xrTableCell11.Name      = "xrTableCell11";
     this.xrTableCell11.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell11.StylePriority.UsePadding = false;
     this.xrTableCell11.Text   = "xrTableCell4";
     this.xrTableCell11.Weight = 1D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Debit]")
     });
     this.xrTableCell12.Multiline = true;
     this.xrTableCell12.Name      = "xrTableCell12";
     this.xrTableCell12.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell12.StylePriority.UsePadding = false;
     this.xrTableCell12.Text   = "xrTableCell5";
     this.xrTableCell12.Weight = 1D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Credit]")
     });
     this.xrTableCell13.Multiline = true;
     this.xrTableCell13.Name      = "xrTableCell13";
     this.xrTableCell13.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell13.StylePriority.UsePadding = false;
     this.xrTableCell13.Text   = "xrTableCell6";
     this.xrTableCell13.Weight = 1D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[After Balance]")
     });
     this.xrTableCell14.Multiline = true;
     this.xrTableCell14.Name      = "xrTableCell14";
     this.xrTableCell14.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell14.StylePriority.UsePadding = false;
     this.xrTableCell14.Text   = "xrTableCell7";
     this.xrTableCell14.Weight = 1D;
     //
     // xrLabel6
     //
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Finance_GetDetailAccounts].[OpeningBalance]")
     });
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(464.2857F, 32.24999F);
     this.xrLabel6.Multiline     = true;
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(92.85709F, 23F);
     this.xrLabel6.Text          = "xrLabel6";
     //
     // xrLabel7
     //
     this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "sumSum([Credit])")
     });
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(464.2857F, 55.24998F);
     this.xrLabel7.Multiline     = true;
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(92.85709F, 23F);
     xrSummary2.Running          = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel7.Summary       = xrSummary2;
     this.xrLabel7.Text          = "xrLabel6";
     //
     // xrLabel8
     //
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "sumSum([Debit])")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(371.4286F, 55.24998F);
     this.xrLabel8.Multiline     = true;
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(92.85712F, 23F);
     xrSummary1.Running          = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel8.Summary       = xrSummary1;
     this.xrLabel8.Text          = "xrLabel6";
     //
     // xrLabel9
     //
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(198.5119F, 55.24998F);
     this.xrLabel9.Multiline     = true;
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(172.9167F, 23F);
     this.xrLabel9.Text          = "Total";
     //
     // xrLabel10
     //
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(198.5119F, 32.24996F);
     this.xrLabel10.Multiline     = true;
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(172.9167F, 23F);
     this.xrLabel10.Text          = "Opening Balance";
     //
     // TransactionDetailsByDetailAccount
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.GroupHeader1,
         this.GroupFooter1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Finance_TransactionsByDetailAccountCode";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.NullParam,
         this.FromDate,
         this.ToDate,
         this.DetailAccount
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
        public void Handler_wireup_should_be_predicatable()
        {
            var counter = 0;

            var subReport = new XtraReport();
            var container = new XRSubreport { ReportSource = subReport };

            var detailBand = new DetailBand();
            detailBand.Controls.Add(container);

            var report = new XtraReport();
            report.Bands.Add(detailBand);

            report.DataSource = new[]
                                    {
                                        new object(),
                                        new object(),
                                        new object(),
                                        new object()
                                    };


            var controller = new DataSourceTrackingController(new EventAggregator(), report, (s, ds) => counter++);
            controller.Print(r => r.ExportToMemory());
            counter.Should().Be(4);
        }
Ejemplo n.º 22
0
        private void InitializeComponent()
        {
            components = new Container();
            var resources = new ComponentResourceManager(typeof(EmployeeSummary));

            topMarginBand1    = new TopMarginBand();
            xrPictureBox2     = new XRPictureBox();
            detailBand1       = new DetailBand();
            xrTable1          = new XRTable();
            xrTableRow1       = new XRTableRow();
            xrTableCell1      = new XRTableCell();
            xrTableRow2       = new XRTableRow();
            xrTableCell2      = new XRTableCell();
            xrTableRow4       = new XRTableRow();
            xrTableCell5      = new XRTableCell();
            xrLine1           = new XRLine();
            xrTableRow3       = new XRTableRow();
            xrTableCell4      = new XRTableCell();
            xrTableCell3      = new XRTableCell();
            xrTableRow5       = new XRTableRow();
            xrTableCell6      = new XRTableCell();
            xrTableCell7      = new XRTableCell();
            xrTableRow6       = new XRTableRow();
            xrTableCell8      = new XRTableCell();
            xrTableCell9      = new XRTableCell();
            xrTableRow7       = new XRTableRow();
            xrTableCell10     = new XRTableCell();
            xrTableRow8       = new XRTableRow();
            xrTableCell12     = new XRTableCell();
            xrTableCell11     = new XRTableCell();
            xrTableRow9       = new XRTableRow();
            xrTableCell13     = new XRTableCell();
            xrTableCell14     = new XRTableCell();
            xrPictureBox1     = new XRPictureBox();
            bottomMarginBand1 = new BottomMarginBand();
            xrPageInfo2       = new XRPageInfo();
            xrPageInfo1       = new XRPageInfo();
            ReportHeader      = new ReportHeaderBand();
            xrTable2          = new XRTable();
            xrTableRow10      = new XRTableRow();
            xrTableCell15     = new XRTableCell();
            xrTableCell16     = new XRTableCell();
            xrTableCell17     = new XRTableCell();
            bindingSource1    = new BindingSource(components);
            ((ISupportInitialize)xrTable1).BeginInit();
            ((ISupportInitialize)xrTable2).BeginInit();
            ((ISupportInitialize)bindingSource1).BeginInit();
            ((ISupportInitialize)this).BeginInit();
            //
            // topMarginBand1
            //
            topMarginBand1.Controls.AddRange(new XRControl[]
            {
                xrPictureBox2
            });
            topMarginBand1.HeightF = 125F;
            topMarginBand1.Name    = "topMarginBand1";
            //
            // xrPictureBox2
            //
            xrPictureBox2.Image         = (Image)resources.GetObject("xrPictureBox2.Image");
            xrPictureBox2.LocationFloat = new PointFloat(382.6075F, 10.00001F);
            xrPictureBox2.Name          = "xrPictureBox2";
            xrPictureBox2.SizeF         = new SizeF(337.5175F, 115F);
            xrPictureBox2.Sizing        = ImageSizeMode.StretchImage;
            //
            // detailBand1
            //
            detailBand1.Controls.AddRange(new XRControl[]
            {
                xrTable1,
                xrPictureBox1
            });
            detailBand1.Font    = new Font("Segoe UI", 10F, FontStyle.Regular, GraphicsUnit.Point, 0);
            detailBand1.HeightF = 256F;
            detailBand1.Name    = "detailBand1";
            detailBand1.StylePriority.UseFont      = false;
            detailBand1.StylePriority.UseForeColor = false;
            //
            // xrTable1
            //
            xrTable1.LocationFloat = new PointFloat(179.8967F, 17.82827F);
            xrTable1.Name          = "xrTable1";
            xrTable1.Rows.AddRange(new[]
            {
                xrTableRow1,
                xrTableRow2,
                xrTableRow4,
                xrTableRow3,
                xrTableRow5,
                xrTableRow6,
                xrTableRow7,
                xrTableRow8,
                xrTableRow9
            });
            xrTable1.SizeF = new SizeF(461.77F, 217.2385F);
            //
            // xrTableRow1
            //
            xrTableRow1.Cells.AddRange(new[]
            {
                xrTableCell1
            });
            xrTableRow1.Name   = "xrTableRow1";
            xrTableRow1.Weight = 0.63958756585072929D;
            //
            // xrTableCell1
            //
            xrTableCell1.CanGrow = false;
            xrTableCell1.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "FullName")
            });
            xrTableCell1.Font                           = new Font("Segoe UI", 26.25F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell1.ForeColor                      = Color.LawnGreen;
            xrTableCell1.Name                           = "xrTableCell1";
            xrTableCell1.StylePriority.UseFont          = false;
            xrTableCell1.StylePriority.UseForeColor     = false;
            xrTableCell1.StylePriority.UsePadding       = false;
            xrTableCell1.StylePriority.UseTextAlignment = false;
            xrTableCell1.TextAlignment                  = TextAlignment.BottomLeft;
            xrTableCell1.Weight                         = 3D;
            //
            // xrTableRow2
            //
            xrTableRow2.Cells.AddRange(new[]
            {
                xrTableCell2
            });
            xrTableRow2.Name   = "xrTableRow2";
            xrTableRow2.Weight = 0.4068930757754366D;
            //
            // xrTableCell2
            //
            xrTableCell2.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Title")
            });
            xrTableCell2.Font                           = new Font("Segoe UI", 14.25F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell2.ForeColor                      = Color.FromArgb(127, 127, 127);
            xrTableCell2.Name                           = "xrTableCell2";
            xrTableCell2.StylePriority.UseFont          = false;
            xrTableCell2.StylePriority.UseForeColor     = false;
            xrTableCell2.StylePriority.UsePadding       = false;
            xrTableCell2.StylePriority.UseTextAlignment = false;
            xrTableCell2.TextAlignment                  = TextAlignment.TopLeft;
            xrTableCell2.Weight                         = 3D;
            //
            // xrTableRow4
            //
            xrTableRow4.Cells.AddRange(new[]
            {
                xrTableCell5
            });
            xrTableRow4.Name   = "xrTableRow4";
            xrTableRow4.Weight = 0.47679215639238742D;
            //
            // xrTableCell5
            //
            xrTableCell5.Controls.AddRange(new XRControl[]
            {
                xrLine1
            });
            xrTableCell5.Name   = "xrTableCell5";
            xrTableCell5.Weight = 3D;
            //
            // xrLine1
            //
            xrLine1.ForeColor     = Color.FromArgb(218, 218, 218);
            xrLine1.LocationFloat = new PointFloat(0F, 3.973643E-05F);
            xrLine1.Name          = "xrLine1";
            xrLine1.SizeF         = new SizeF(461.77F, 32.59834F);
            xrLine1.StylePriority.UseForeColor = false;
            //
            // xrTableRow3
            //
            xrTableRow3.Cells.AddRange(new[]
            {
                xrTableCell4,
                xrTableCell3
            });
            xrTableRow3.ForeColor = Color.FromArgb(166, 166, 166);
            xrTableRow3.Name      = "xrTableRow3";
            xrTableRow3.StylePriority.UseForeColor = false;
            xrTableRow3.Weight = 0.27799953466570859D;
            //
            // xrTableCell4
            //
            xrTableCell4.CanGrow = false;
            xrTableCell4.Name    = "xrTableCell4";
            xrTableCell4.StylePriority.UseBorderColor = false;
            xrTableCell4.StylePriority.UseForeColor   = false;
            xrTableCell4.StylePriority.UsePadding     = false;
            xrTableCell4.Text   = "ADRESSE";
            xrTableCell4.Weight = 1.4636767710884846D;
            //
            // xrTableCell3
            //
            xrTableCell3.CanGrow = false;
            xrTableCell3.Name    = "xrTableCell3";
            xrTableCell3.Text    = "TELEPHONE";
            xrTableCell3.Weight  = 1.5363232289115154D;
            //
            // xrTableRow5
            //
            xrTableRow5.Cells.AddRange(new[]
            {
                xrTableCell6,
                xrTableCell7
            });
            xrTableRow5.Name   = "xrTableRow5";
            xrTableRow5.Weight = 0.27270867469998472D;
            //
            // xrTableCell6
            //
            xrTableCell6.CanGrow   = false;
            xrTableCell6.Multiline = true;
            xrTableCell6.Name      = "xrTableCell6";
            xrTableCell6.RowSpan   = 2;
            xrTableCell6.Text      = "[Address.Line]\r\n[Address.CityLine]";
            xrTableCell6.Weight    = 1.4636768842199621D;
            xrTableCell6.WordWrap  = false;
            //
            // xrTableCell7
            //
            xrTableCell7.CanGrow = false;
            xrTableCell7.Name    = "xrTableCell7";
            xrTableCell7.StylePriority.UsePadding = false;
            xrTableCell7.Text     = "[MobilePhone] (Mobile)";
            xrTableCell7.Weight   = 1.5363231157800379D;
            xrTableCell7.WordWrap = false;
            //
            // xrTableRow6
            //
            xrTableRow6.Cells.AddRange(new[]
            {
                xrTableCell8,
                xrTableCell9
            });
            xrTableRow6.Name   = "xrTableRow6";
            xrTableRow6.Weight = 0.296050406027006D;
            //
            // xrTableCell8
            //
            xrTableCell8.CanGrow = false;
            xrTableCell8.Name    = "xrTableCell8";
            xrTableCell8.Text    = "xrTableCell8";
            xrTableCell8.Weight  = 1.4636768842199621D;
            //
            // xrTableCell9
            //
            xrTableCell9.CanGrow  = false;
            xrTableCell9.Name     = "xrTableCell9";
            xrTableCell9.Text     = "[HomePhone] (Fixe)";
            xrTableCell9.Weight   = 1.5363231157800379D;
            xrTableCell9.WordWrap = false;
            //
            // xrTableRow7
            //
            xrTableRow7.Cells.AddRange(new[]
            {
                xrTableCell10
            });
            xrTableRow7.Name   = "xrTableRow7";
            xrTableRow7.Weight = 0.20932491335747283D;
            //
            // xrTableCell10
            //
            xrTableCell10.Name   = "xrTableCell10";
            xrTableCell10.Weight = 3D;
            //
            // xrTableRow8
            //
            xrTableRow8.Cells.AddRange(new[]
            {
                xrTableCell12,
                xrTableCell11
            });
            xrTableRow8.ForeColor = Color.FromArgb(166, 166, 166);
            xrTableRow8.Name      = "xrTableRow8";
            xrTableRow8.StylePriority.UseForeColor = false;
            xrTableRow8.Weight = 0.27782294316403405D;
            //
            // xrTableCell12
            //
            xrTableCell12.Name   = "xrTableCell12";
            xrTableCell12.Text   = "EMAIL";
            xrTableCell12.Weight = 1.4636771502088639D;
            //
            // xrTableCell11
            //
            xrTableCell11.Name   = "xrTableCell11";
            xrTableCell11.Text   = "SKYPE";
            xrTableCell11.Weight = 1.5363228497911361D;
            //
            // xrTableRow9
            //
            xrTableRow9.Cells.AddRange(new[]
            {
                xrTableCell13,
                xrTableCell14
            });
            xrTableRow9.Name   = "xrTableRow9";
            xrTableRow9.Weight = 0.32020800489844209D;
            //
            // xrTableCell13
            //
            xrTableCell13.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Email")
            });
            xrTableCell13.Name   = "xrTableCell13";
            xrTableCell13.Weight = 1.4636770897901221D;
            //
            // xrTableCell14
            //
            xrTableCell14.DataBindings.AddRange(new[]
            {
                new XRBinding("Text", null, "Skype")
            });
            xrTableCell14.Name   = "xrTableCell14";
            xrTableCell14.Weight = 1.5363229102098779D;
            //
            // xrPictureBox1
            //
            xrPictureBox1.DataBindings.AddRange(new[]
            {
                new XRBinding("Image", null, "Photo")
            });
            xrPictureBox1.LocationFloat = new PointFloat(7.65625F, 19.91159F);
            xrPictureBox1.Name          = "xrPictureBox1";
            xrPictureBox1.SizeF         = new SizeF(152.3728F, 208.25F);
            xrPictureBox1.Sizing        = ImageSizeMode.ZoomImage;
            //
            // bottomMarginBand1
            //
            bottomMarginBand1.Controls.AddRange(new XRControl[]
            {
                xrPageInfo2,
                xrPageInfo1
            });
            bottomMarginBand1.Font    = new Font("Segoe UI", 11F, FontStyle.Regular, GraphicsUnit.Point, 0);
            bottomMarginBand1.HeightF = 102F;
            bottomMarginBand1.Name    = "bottomMarginBand1";
            bottomMarginBand1.StylePriority.UseFont = false;
            //
            // xrPageInfo2
            //
            xrPageInfo2.ForeColor     = Color.FromArgb(166, 166, 166);
            xrPageInfo2.Format        = "{0:MMMM d, yyyy}";
            xrPageInfo2.LocationFloat = new PointFloat(485.4167F, 0F);
            xrPageInfo2.Name          = "xrPageInfo2";
            xrPageInfo2.Padding       = new PaddingInfo(2, 2, 0, 0, 100F);
            xrPageInfo2.PageInfo      = PageInfo.DateTime;
            xrPageInfo2.SizeF         = new SizeF(156.25F, 23F);
            xrPageInfo2.StylePriority.UseForeColor     = false;
            xrPageInfo2.StylePriority.UseTextAlignment = false;
            xrPageInfo2.TextAlignment = TextAlignment.TopRight;
            //
            // xrPageInfo1
            //
            xrPageInfo1.ForeColor     = Color.FromArgb(166, 166, 166);
            xrPageInfo1.Format        = "Page {0} of {1}";
            xrPageInfo1.LocationFloat = new PointFloat(0F, 0F);
            xrPageInfo1.Name          = "xrPageInfo1";
            xrPageInfo1.Padding       = new PaddingInfo(2, 2, 0, 0, 100F);
            xrPageInfo1.SizeF         = new SizeF(156.25F, 23F);
            xrPageInfo1.StylePriority.UseForeColor = false;
            //
            // ReportHeader
            //
            ReportHeader.Controls.AddRange(new XRControl[]
            {
                xrTable2
            });
            ReportHeader.HeightF = 30F;
            ReportHeader.Name    = "ReportHeader";
            //
            // xrTable2
            //
            xrTable2.LocationFloat = new PointFloat(0F, 0F);
            xrTable2.Name          = "xrTable2";
            xrTable2.Rows.AddRange(new[]
            {
                xrTableRow10
            });
            xrTable2.SizeF = new SizeF(641.6667F, 29.69642F);
            //
            // xrTableRow10
            //
            xrTableRow10.Cells.AddRange(new[]
            {
                xrTableCell15,
                xrTableCell16,
                xrTableCell17
            });
            xrTableRow10.Name   = "xrTableRow10";
            xrTableRow10.Weight = 1D;
            //
            // xrTableCell15
            //
            xrTableCell15.BackColor = Color.LimeGreen;
            xrTableCell15.Font      = new Font("Segoe UI", 13F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrTableCell15.ForeColor = Color.White;
            xrTableCell15.Name      = "xrTableCell15";
            xrTableCell15.Padding   = new PaddingInfo(8, 0, 0, 0, 100F);
            xrTableCell15.StylePriority.UseBackColor     = false;
            xrTableCell15.StylePriority.UseFont          = false;
            xrTableCell15.StylePriority.UseForeColor     = false;
            xrTableCell15.StylePriority.UsePadding       = false;
            xrTableCell15.StylePriority.UseTextAlignment = false;
            xrTableCell15.Text          = "Liste des employés";
            xrTableCell15.TextAlignment = TextAlignment.MiddleLeft;
            xrTableCell15.Weight        = 0.7808441558441559D;
            //
            // xrTableCell16
            //
            xrTableCell16.Name   = "xrTableCell16";
            xrTableCell16.Weight = 0.043932629870129913D;
            //
            // xrTableCell17
            //
            xrTableCell17.BackColor = Color.FromArgb(218, 218, 218);
            xrTableCell17.Name      = "xrTableCell17";
            xrTableCell17.StylePriority.UseBackColor = false;
            xrTableCell17.Weight = 2.1752232142857144D;
            //
            // bindingSource1
            //
            bindingSource1.DataSource = typeof(Employee);
            //
            // EmployeeSummary
            //
            Bands.AddRange(new Band[]
            {
                topMarginBand1,
                detailBand1,
                bottomMarginBand1,
                ReportHeader
            });
            DataSource    = bindingSource1;
            DrawWatermark = true;
            Margins       = new Margins(104, 54, 125, 102);
            Version       = "15.1";
            ((ISupportInitialize)xrTable1).EndInit();
            ((ISupportInitialize)xrTable2).EndInit();
            ((ISupportInitialize)bindingSource1).EndInit();
            ((ISupportInitialize)this).EndInit();
        }
Ejemplo n.º 23
0
 private void InitializeComponent()
 {
     this.dtl = new DevExpress.XtraReports.UI.DetailBand();
     this.ph = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xlblReportHeader = new DevExpress.XtraReports.UI.XRLabel();
     this.pf = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageInfo = new DevExpress.XtraReports.UI.XRPageInfo();
     this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrTableRoadInfo = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableRoadInfoCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRoadInfoCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableDev = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableDevCell = new DevExpress.XtraReports.UI.XRTableCell();
     this.xlblDevice = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblTimeRange = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblMemo = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblUser = new DevExpress.XtraReports.UI.XRLabel();
     this.xlblTime = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xlblDev = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTableRoadInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTableDev)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // dtl
     //
     this.dtl.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.dtl.Height = 0;
     this.dtl.Name = "dtl";
     this.dtl.ParentStyleUsing.UseFont = false;
     //
     // ph
     //
     this.ph.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.ph.Height = 0;
     this.ph.Name = "ph";
     this.ph.ParentStyleUsing.UseFont = false;
     //
     // xlblReportHeader
     //
     this.xlblReportHeader.BackColor = System.Drawing.Color.Empty;
     this.xlblReportHeader.BorderColor = System.Drawing.SystemColors.Control;
     this.xlblReportHeader.Font = new System.Drawing.Font("標楷體", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xlblReportHeader.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblReportHeader.Location = new System.Drawing.Point(250, 25);
     this.xlblReportHeader.Name = "xlblReportHeader";
     this.xlblReportHeader.ParentStyleUsing.UseBackColor = false;
     this.xlblReportHeader.ParentStyleUsing.UseBorderColor = false;
     this.xlblReportHeader.ParentStyleUsing.UseFont = false;
     this.xlblReportHeader.ParentStyleUsing.UseForeColor = false;
     this.xlblReportHeader.Size = new System.Drawing.Size(600, 33);
     this.xlblReportHeader.Text = "測試報表";
     this.xlblReportHeader.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // pf
     //
     this.pf.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.pf.Height = 158;
     this.pf.Name = "pf";
     this.pf.ParentStyleUsing.UseFont = false;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrLabel1.Location = new System.Drawing.Point(967, 108);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.ParentStyleUsing.UseFont = false;
     this.xrLabel1.ParentStyleUsing.UseForeColor = false;
     this.xrLabel1.Size = new System.Drawing.Size(108, 25);
     this.xrLabel1.Text = "頁次:";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrPageInfo
     //
     this.xrPageInfo.Font = new System.Drawing.Font("標楷體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrPageInfo.Location = new System.Drawing.Point(1075, 108);
     this.xrPageInfo.Name = "xrPageInfo";
     this.xrPageInfo.ParentStyleUsing.UseFont = false;
     this.xrPageInfo.ParentStyleUsing.UseForeColor = false;
     this.xrPageInfo.Size = new System.Drawing.Size(50, 25);
     this.xrPageInfo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xlblDev,
     this.xrTableRoadInfo,
     this.xrTableDev,
     this.xlblDevice,
     this.xlblTimeRange,
     this.xrPageInfo,
     this.xrLabel1,
     this.xlblMemo,
     this.xlblUser,
     this.xlblTime,
     this.xlblReportHeader});
     this.TopMargin.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.TopMargin.Height = 142;
     this.TopMargin.Name = "TopMargin";
     this.TopMargin.ParentStyleUsing.UseFont = false;
     //
     // xrTableRoadInfo
     //
     this.xrTableRoadInfo.Location = new System.Drawing.Point(0, 108);
     this.xrTableRoadInfo.Name = "xrTableRoadInfo";
     this.xrTableRoadInfo.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow2});
     this.xrTableRoadInfo.Size = new System.Drawing.Size(408, 25);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableRoadInfoCell1,
     this.xrTableRoadInfoCell2});
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Size = new System.Drawing.Size(408, 25);
     //
     // xrTableRoadInfoCell1
     //
     this.xrTableRoadInfoCell1.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xrTableRoadInfoCell1.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrTableRoadInfoCell1.Location = new System.Drawing.Point(0, 0);
     this.xrTableRoadInfoCell1.Name = "xrTableRoadInfoCell1";
     this.xrTableRoadInfoCell1.ParentStyleUsing.UseFont = false;
     this.xrTableRoadInfoCell1.ParentStyleUsing.UseForeColor = false;
     this.xrTableRoadInfoCell1.Size = new System.Drawing.Size(208, 25);
     this.xrTableRoadInfoCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRoadInfoCell2
     //
     this.xrTableRoadInfoCell2.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xrTableRoadInfoCell2.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrTableRoadInfoCell2.Location = new System.Drawing.Point(208, 0);
     this.xrTableRoadInfoCell2.Name = "xrTableRoadInfoCell2";
     this.xrTableRoadInfoCell2.ParentStyleUsing.UseFont = false;
     this.xrTableRoadInfoCell2.ParentStyleUsing.UseForeColor = false;
     this.xrTableRoadInfoCell2.Size = new System.Drawing.Size(200, 25);
     this.xrTableRoadInfoCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableDev
     //
     this.xrTableDev.Location = new System.Drawing.Point(808, 108);
     this.xrTableDev.Name = "xrTableDev";
     this.xrTableDev.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
     this.xrTableRow1});
     this.xrTableDev.Size = new System.Drawing.Size(159, 25);
     this.xrTableDev.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
     this.xrTableDevCell});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Size = new System.Drawing.Size(159, 25);
     //
     // xrTableDevCell
     //
     this.xrTableDevCell.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xrTableDevCell.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xrTableDevCell.Location = new System.Drawing.Point(0, 0);
     this.xrTableDevCell.Name = "xrTableDevCell";
     this.xrTableDevCell.ParentStyleUsing.UseFont = false;
     this.xrTableDevCell.ParentStyleUsing.UseForeColor = false;
     this.xrTableDevCell.Size = new System.Drawing.Size(159, 25);
     this.xrTableDevCell.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblDevice
     //
     this.xlblDevice.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblDevice.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblDevice.Location = new System.Drawing.Point(717, 108);
     this.xlblDevice.Name = "xlblDevice";
     this.xlblDevice.ParentStyleUsing.UseFont = false;
     this.xlblDevice.ParentStyleUsing.UseForeColor = false;
     this.xlblDevice.Size = new System.Drawing.Size(95, 25);
     this.xlblDevice.Text = "偵測器編號:";
     this.xlblDevice.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblTimeRange
     //
     this.xlblTimeRange.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblTimeRange.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblTimeRange.Location = new System.Drawing.Point(0, 83);
     this.xlblTimeRange.Name = "xlblTimeRange";
     this.xlblTimeRange.ParentStyleUsing.UseFont = false;
     this.xlblTimeRange.ParentStyleUsing.UseForeColor = false;
     this.xlblTimeRange.Size = new System.Drawing.Size(408, 25);
     this.xlblTimeRange.Text = "時間:";
     this.xlblTimeRange.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblMemo
     //
     this.xlblMemo.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblMemo.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblMemo.Location = new System.Drawing.Point(967, 83);
     this.xlblMemo.Name = "xlblMemo";
     this.xlblMemo.ParentStyleUsing.UseFont = false;
     this.xlblMemo.ParentStyleUsing.UseForeColor = false;
     this.xlblMemo.Size = new System.Drawing.Size(158, 25);
     this.xlblMemo.Text = "中區-RPT_DATA_06";
     this.xlblMemo.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xlblUser
     //
     this.xlblUser.BackColor = System.Drawing.Color.Empty;
     this.xlblUser.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblUser.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblUser.Location = new System.Drawing.Point(717, 58);
     this.xlblUser.Name = "xlblUser";
     this.xlblUser.ParentStyleUsing.UseBackColor = false;
     this.xlblUser.ParentStyleUsing.UseFont = false;
     this.xlblUser.ParentStyleUsing.UseForeColor = false;
     this.xlblUser.Size = new System.Drawing.Size(249, 25);
     this.xlblUser.Text = "操作者:";
     this.xlblUser.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xlblTime
     //
     this.xlblTime.BackColor = System.Drawing.Color.Empty;
     this.xlblTime.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblTime.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblTime.Location = new System.Drawing.Point(717, 83);
     this.xlblTime.Name = "xlblTime";
     this.xlblTime.ParentStyleUsing.UseBackColor = false;
     this.xlblTime.ParentStyleUsing.UseFont = false;
     this.xlblTime.ParentStyleUsing.UseForeColor = false;
     this.xlblTime.Size = new System.Drawing.Size(249, 25);
     this.xlblTime.Text = "列印日期:";
     this.xlblTime.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.Detail});
     this.DetailReport.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.DetailReport.Name = "DetailReport";
     this.DetailReport.ParentStyleUsing.UseFont = false;
     //
     // Detail
     //
     this.Detail.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.Detail.Height = 0;
     this.Detail.Name = "Detail";
     this.Detail.ParentStyleUsing.UseFont = false;
     //
     // xlblDev
     //
     this.xlblDev.Font = new System.Drawing.Font("標楷體", 9.75F);
     this.xlblDev.ForeColor = System.Drawing.SystemColors.Desktop;
     this.xlblDev.Location = new System.Drawing.Point(0, 108);
     this.xlblDev.Name = "xlblDev";
     this.xlblDev.ParentStyleUsing.UseFont = false;
     this.xlblDev.ParentStyleUsing.UseForeColor = false;
     this.xlblDev.Size = new System.Drawing.Size(408, 25);
     this.xlblDev.Text = "設備種類:";
     this.xlblDev.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // clsReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.dtl,
     this.ph,
     this.pf,
     this.TopMargin,
     this.DetailReport});
     this.Margins = new System.Drawing.Printing.Margins(20, 20, 142, 75);
     this.PageHeight = 827;
     this.PageWidth = 1169;
     this.PaperKind = System.Drawing.Printing.PaperKind.A4Rotated;
     ((System.ComponentModel.ISupportInitialize)(this.xrTableRoadInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTableDev)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 24
0
 private void InitializeComponent()
 {
     this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // topMarginBand1
     //
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // detailBand1
     //
     this.detailBand1.Name = "detailBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // XtraReportDefault3
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.topMarginBand1,
     this.detailBand1,
     this.bottomMarginBand1});
     this.Version = "11.2";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(r_productivity));
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series    series1    = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel1 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.XtraCharts.SideBySideBarSeriesView  sideBySideBarSeriesView1  = new DevExpress.XtraCharts.SideBySideBarSeriesView();
     DevExpress.XtraCharts.Series                  series2                  = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.PointSeriesLabel        pointSeriesLabel1        = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.SplineSeriesView        splineSeriesView1        = new DevExpress.XtraCharts.SplineSeriesView();
     DevExpress.XtraCharts.SideBySideBarSeriesView sideBySideBarSeriesView2 = new DevExpress.XtraCharts.SideBySideBarSeriesView();
     DevExpress.DataAccess.Sql.CustomSqlQuery      customSqlQuery1          = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     DevExpress.DataAccess.Sql.CustomSqlQuery      customSqlQuery2          = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     DevExpress.DataAccess.Sql.CustomSqlQuery      customSqlQuery3          = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     DevExpress.DataAccess.Sql.CustomSqlQuery      customSqlQuery4          = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     DevExpress.XtraCharts.XYDiagram               xyDiagram2               = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series                  series3                  = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesView sideBySideBarSeriesView3 = new DevExpress.XtraCharts.SideBySideBarSeriesView();
     DevExpress.XtraCharts.Series                  series4                  = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.PointSeriesLabel        pointSeriesLabel2        = new DevExpress.XtraCharts.PointSeriesLabel();
     DevExpress.XtraCharts.LineSeriesView          lineSeriesView1          = new DevExpress.XtraCharts.LineSeriesView();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine1        = new DevExpress.XtraReports.UI.XRLine();
     this.xrPictureBox1  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLine2        = new DevExpress.XtraReports.UI.XRLine();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrChart3       = new DevExpress.XtraReports.UI.XRChart();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrColumn1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrColumn2      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrColumn3      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrColumn4      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrColumn5      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrColumn6      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrChart1       = new DevExpress.XtraReports.UI.XRChart();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
     this.DetailReport   = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1        = new DevExpress.XtraReports.UI.DetailBand();
     this.ReportFooter   = new DevExpress.XtraReports.UI.ReportFooterBand();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(splineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrLine1,
         this.xrPictureBox1
     });
     this.TopMargin.HeightF = 65F;
     this.TopMargin.Name    = "TopMargin";
     //
     // xrLabel4
     //
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(598.9583F, 25.33332F);
     this.xrLabel4.Multiline     = true;
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(391.0416F, 23F);
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "Utilization";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLine1
     //
     this.xrLine1.BorderColor   = System.Drawing.Color.Empty;
     this.xrLine1.ForeColor     = System.Drawing.Color.Gray;
     this.xrLine1.LineWidth     = 5F;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 48.33333F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(996.875F, 16.66667F);
     this.xrLine1.StylePriority.UseBorderColor = false;
     this.xrLine1.StylePriority.UseForeColor   = false;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox1.ImageSource"));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 8.75F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(153.125F, 39.58333F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.StretchImage;
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1,
         this.xrLine2
     });
     this.BottomMargin.HeightF = 54F;
     this.BottomMargin.Name    = "BottomMargin";
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(598.9583F, 16.66667F);
     this.xrLabel1.Multiline     = true;
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(401.0417F, 23F);
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "xrLabel1";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // xrLine2
     //
     this.xrLine2.BorderColor   = System.Drawing.Color.Empty;
     this.xrLine2.ForeColor     = System.Drawing.Color.Gray;
     this.xrLine2.LineWidth     = 5F;
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(996.875F, 16.66667F);
     this.xrLine2.StylePriority.UseBorderColor = false;
     this.xrLine2.StylePriority.UseForeColor   = false;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel6,
         this.xrChart3,
         this.xrLabel3,
         this.xrLabel5,
         this.xrTable2,
         this.xrChart1
     });
     this.Detail.HeightF = 582.7084F;
     this.Detail.Name    = "Detail";
     //
     // xrLabel6
     //
     this.xrLabel6.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 524.2917F);
     this.xrLabel6.Multiline                      = true;
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(153.125F, 23F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "ACTIONS RAIL";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrChart3
     //
     this.xrChart3.AutoLayout     = true;
     this.xrChart3.BackColor      = System.Drawing.Color.White;
     this.xrChart3.BorderColor    = System.Drawing.Color.Black;
     this.xrChart3.Borders        = DevExpress.XtraPrinting.BorderSide.None;
     this.xrChart3.DataSource     = this.sqlDataSource1;
     xyDiagram1.AxisX.Label.Angle = 270;
     xyDiagram1.AxisX.Label.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.AxisX.Label.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     xyDiagram1.AxisX.Label.ResolveOverlappingOptions.MinIndent = 1;
     xyDiagram1.AxisX.MinorCount = 1;
     xyDiagram1.AxisX.Visibility = DevExpress.Utils.DefaultBoolean.True;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     xyDiagram1.DefaultPane.EnableAxisXScrolling = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.DefaultPane.EnableAxisXZooming   = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.DefaultPane.EnableAxisYScrolling = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.DefaultPane.EnableAxisYZooming   = DevExpress.Utils.DefaultBoolean.False;
     this.xrChart3.Diagram = xyDiagram1;
     this.xrChart3.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Center;
     this.xrChart3.Legend.BackColor           = System.Drawing.Color.Transparent;
     this.xrChart3.Legend.Border.Color        = System.Drawing.SystemColors.ActiveBorder;
     this.xrChart3.Legend.Border.Visibility   = DevExpress.Utils.DefaultBoolean.True;
     this.xrChart3.Legend.Direction           = DevExpress.XtraCharts.LegendDirection.LeftToRight;
     this.xrChart3.Legend.MarkerSize          = new System.Drawing.Size(20, 10);
     this.xrChart3.Legend.Name       = "Default Legend";
     this.xrChart3.Legend.Title.Text = "Actual";
     this.xrChart3.Legend.Visibility = DevExpress.Utils.DefaultBoolean.False;
     this.xrChart3.LocationFloat     = new DevExpress.Utils.PointFloat(605.1041F, 23.00002F);
     this.xrChart3.Name = "xrChart3";
     this.xrChart3.PaletteBaseColorNumber         = 2;
     this.xrChart3.PaletteName                    = "Grayscale";
     series1.ArgumentDataMember                   = "Query_4.scause";
     sideBySideBarSeriesLabel1.Border.Visibility  = DevExpress.Utils.DefaultBoolean.True;
     sideBySideBarSeriesLabel1.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
     sideBySideBarSeriesLabel1.LineVisibility     = DevExpress.Utils.DefaultBoolean.False;
     sideBySideBarSeriesLabel1.TextColor          = System.Drawing.Color.Black;
     sideBySideBarSeriesLabel1.TextOrientation    = DevExpress.XtraCharts.TextOrientation.BottomToTop;
     series1.Label      = sideBySideBarSeriesLabel1;
     series1.LegendName = "Default Legend";
     series1.Name       = "Actual";
     series1.ValueDataMembersSerializable  = "Query_4.factual";
     sideBySideBarSeriesView1.Color        = System.Drawing.Color.SteelBlue;
     sideBySideBarSeriesView1.Transparency = ((byte)(135));
     series1.View = sideBySideBarSeriesView1;
     series2.ArgumentDataMember           = "Query_4.scause";
     pointSeriesLabel1.Border.Visibility  = DevExpress.Utils.DefaultBoolean.False;
     pointSeriesLabel1.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
     pointSeriesLabel1.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Empty;
     pointSeriesLabel1.LineVisibility     = DevExpress.Utils.DefaultBoolean.False;
     pointSeriesLabel1.TextColor          = System.Drawing.Color.Black;
     series2.Label        = pointSeriesLabel1;
     series2.Name         = "Goal";
     series2.ShowInLegend = false;
     series2.ValueDataMembersSerializable = "Query_4.fsum";
     splineSeriesView1.Color          = System.Drawing.Color.FromArgb(((int)(((byte)(89)))), ((int)(((byte)(89)))), ((int)(((byte)(89)))));
     series2.View                     = splineSeriesView1;
     this.xrChart3.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1,
         series2
     };
     sideBySideBarSeriesView2.Transparency = ((byte)(135));
     this.xrChart3.SeriesTemplate.View     = sideBySideBarSeriesView2;
     this.xrChart3.SizeF = new System.Drawing.SizeF(384.8958F, 476.5417F);
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "DB_1033_DashboardConnectionString";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     customSqlQuery1.Name = "Query_1";
     customSqlQuery1.Sql  = resources.GetString("customSqlQuery1.Sql");
     customSqlQuery2.Name = "Query_2";
     customSqlQuery2.Sql  = "SELECT top 5 [factual],[fsum],[scause] \r\n FROM [DB_1033_Dashboard].[dbo].[sta_niv" +
                            "el2p]\r\n where smetric = \'labor productivity\'\r\n";
     customSqlQuery3.Name = "Query_3";
     customSqlQuery3.Sql  = "select top 5 * from [tbl_actions]\r\nwhere report = \'labor productivity\'";
     customSqlQuery4.Name = "Query_4";
     customSqlQuery4.Sql  = resources.GetString("customSqlQuery4.Sql");
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         customSqlQuery1,
         customSqlQuery2,
         customSqlQuery3,
         customSqlQuery4
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // xrLabel3
     //
     this.xrLabel3.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(748.9583F, 0F);
     this.xrLabel3.Multiline                      = true;
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "FORECAST";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(259.9998F, 0F);
     this.xrLabel5.Multiline                      = true;
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "TREND";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTable2
     //
     this.xrTable2.BackColor = System.Drawing.Color.IndianRed;
     this.xrTable2.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                       | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.BorderWidth   = 1F;
     this.xrTable2.Font          = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrTable2.ForeColor     = System.Drawing.Color.White;
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 557.7084F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(996.875F, 25F);
     this.xrTable2.StylePriority.UseBackColor     = false;
     this.xrTable2.StylePriority.UseBorders       = false;
     this.xrTable2.StylePriority.UseBorderWidth   = false;
     this.xrTable2.StylePriority.UseFont          = false;
     this.xrTable2.StylePriority.UseForeColor     = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrColumn1,
         this.xrColumn2,
         this.xrColumn3,
         this.xrColumn4,
         this.xrColumn5,
         this.xrColumn6
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrColumn1
     //
     this.xrColumn1.Multiline = true;
     this.xrColumn1.Name      = "xrColumn1";
     this.xrColumn1.Text      = "RESPONSIBLE";
     this.xrColumn1.Weight    = 0.92163030833659876D;
     //
     // xrColumn2
     //
     this.xrColumn2.Multiline = true;
     this.xrColumn2.Name      = "xrColumn2";
     this.xrColumn2.Text      = "ISSUE";
     this.xrColumn2.Weight    = 1.4858934475411441D;
     //
     // xrColumn3
     //
     this.xrColumn3.Multiline = true;
     this.xrColumn3.Name      = "xrColumn3";
     this.xrColumn3.Text      = "ACTION";
     this.xrColumn3.Weight    = 1.8025078982170846D;
     //
     // xrColumn4
     //
     this.xrColumn4.Multiline = true;
     this.xrColumn4.Name      = "xrColumn4";
     this.xrColumn4.Text      = "STATUS";
     this.xrColumn4.Weight    = 0.60501558214145756D;
     //
     // xrColumn5
     //
     this.xrColumn5.Multiline = true;
     this.xrColumn5.Name      = "xrColumn5";
     this.xrColumn5.Text      = "START_DATE";
     this.xrColumn5.Weight    = 0.5987462345709248D;
     //
     // xrColumn6
     //
     this.xrColumn6.Multiline = true;
     this.xrColumn6.Name      = "xrColumn6";
     this.xrColumn6.Text      = "DUE_DATE";
     this.xrColumn6.Weight    = 0.58620652919279D;
     //
     // xrChart1
     //
     this.xrChart1.BorderColor = System.Drawing.Color.Black;
     this.xrChart1.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.xrChart1.DataSource  = this.sqlDataSource1;
     xyDiagram2.AxisX.AutoScaleBreaks.MaxCount = 1;
     xyDiagram2.AxisX.InterlacedColor          = System.Drawing.Color.DimGray;
     xyDiagram2.AxisX.MinorCount                 = 1;
     xyDiagram2.AxisX.Tickmarks.MinorVisible     = false;
     xyDiagram2.AxisX.Title.Visibility           = DevExpress.Utils.DefaultBoolean.Default;
     xyDiagram2.AxisX.Visibility                 = DevExpress.Utils.DefaultBoolean.True;
     xyDiagram2.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram2.AxisY.VisibleInPanesSerializable = "-1";
     xyDiagram2.DefaultPane.EnableAxisXScrolling = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram2.DefaultPane.EnableAxisXZooming   = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram2.DefaultPane.EnableAxisYScrolling = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram2.DefaultPane.EnableAxisYZooming   = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram2.RuntimePaneCollapse              = false;
     this.xrChart1.Diagram = xyDiagram2;
     this.xrChart1.Legend.AlignmentHorizontal = DevExpress.XtraCharts.LegendAlignmentHorizontal.Center;
     this.xrChart1.Legend.AlignmentVertical   = DevExpress.XtraCharts.LegendAlignmentVertical.BottomOutside;
     this.xrChart1.Legend.Direction           = DevExpress.XtraCharts.LegendDirection.LeftToRight;
     this.xrChart1.Legend.MarkerSize          = new System.Drawing.Size(10, 10);
     this.xrChart1.Legend.Name       = "Default Legend";
     this.xrChart1.Legend.Title.Text = "ESCAPES";
     this.xrChart1.LocationFloat     = new DevExpress.Utils.PointFloat(0F, 23.00002F);
     this.xrChart1.Name         = "xrChart1";
     this.xrChart1.PaletteName  = "Grayscale";
     series3.ArgumentDataMember = "Query_1.sdesc";
     series3.Name = "Actual";
     series3.ValueDataMembersSerializable = "Query_1.factual";
     sideBySideBarSeriesView3.Color       = System.Drawing.Color.FromArgb(((int)(((byte)(150)))), ((int)(((byte)(150)))), ((int)(((byte)(150)))));
     series3.View = sideBySideBarSeriesView3;
     series4.ArgumentDataMember           = "Query_1.sdesc";
     pointSeriesLabel2.Border.Visibility  = DevExpress.Utils.DefaultBoolean.False;
     pointSeriesLabel2.EnableAntialiasing = DevExpress.Utils.DefaultBoolean.False;
     pointSeriesLabel2.FillStyle.FillMode = DevExpress.XtraCharts.FillMode.Empty;
     pointSeriesLabel2.LineVisibility     = DevExpress.Utils.DefaultBoolean.False;
     pointSeriesLabel2.TextColor          = System.Drawing.Color.Black;
     series4.Label = pointSeriesLabel2;
     series4.Name  = "Goal";
     series4.ValueDataMembersSerializable = "Query_1.fgoal";
     lineSeriesView1.Color            = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     series4.View                     = lineSeriesView1;
     this.xrChart1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series3,
         series4
     };
     this.xrChart1.SizeF = new System.Drawing.SizeF(601.0417F, 476.5417F);
     //
     // xrTable1
     //
     this.xrTable1.BackColor     = System.Drawing.Color.WhiteSmoke;
     this.xrTable1.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(996.875F, 25F);
     this.xrTable1.StylePriority.UseBackColor     = false;
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_3].[responsible]")
     });
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Text      = "xrTableCell1";
     this.xrTableCell1.Weight    = 0.92163007873726477D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_3].[issue]")
     });
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Text      = "xrTableCell2";
     this.xrTableCell2.Weight    = 1.4858935393808777D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_3].[action]")
     });
     this.xrTableCell3.Multiline = true;
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.Text      = "xrTableCell3";
     this.xrTableCell3.Weight    = 1.8025080359766852D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_3].[open_close]")
     });
     this.xrTableCell4.Multiline = true;
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.Text      = "xrTableCell4";
     this.xrTableCell4.Weight    = 0.60501558214145756D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_3].[creation_date]")
     });
     this.xrTableCell5.Multiline        = true;
     this.xrTableCell5.Name             = "xrTableCell5";
     this.xrTableCell5.Text             = "xrTableCell5";
     this.xrTableCell5.TextFormatString = "{0:MM/dd/yyyy}";
     this.xrTableCell5.Weight           = 0.5987462345709248D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_3].[due_date]")
     });
     this.xrTableCell6.Multiline        = true;
     this.xrTableCell6.Name             = "xrTableCell6";
     this.xrTableCell6.Text             = "xrTableCell6";
     this.xrTableCell6.TextFormatString = "{0:MM/dd/yyyy}";
     this.xrTableCell6.Weight           = 0.58620652919279D;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.ReportFooter
     });
     this.DetailReport.DataMember = "Query_3";
     this.DetailReport.DataSource = this.sqlDataSource1;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail1.HeightF = 29.37495F;
     this.Detail1.Name    = "Detail1";
     //
     // ReportFooter
     //
     this.ReportFooter.HeightF = 2.708689F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // r_productivity
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.DetailReport
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataSource        = this.sqlDataSource1;
     this.Font              = new System.Drawing.Font("Arial", 9.75F);
     this.Landscape         = true;
     this.Margins           = new System.Drawing.Printing.Margins(48, 50, 65, 54);
     this.PageColor         = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.PageHeight        = 850;
     this.PageWidth         = 1100;
     this.RequestParameters = false;
     this.Version           = "20.1";
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(splineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pointSeriesLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(lineSeriesView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 26
0
        protected virtual void Inizializza(ImpostazioneReportDTO impostazioniReport, string noteRtf)
        {
            _impostazioniReport = impostazioniReport;

            // Create XtraReport instance
            _report = GetXtraReport(impostazioniReport, _isSubreport);
            _report.BeginInit();

            if (!_isSubreport)
            {
                _reportHeaderBand = new ReportHeaderBand();
                _reportFooterBand = new ReportFooterBand();
                _topMarginBand = new TopMarginBand();
                _bottomMarginBand = new BottomMarginBand();
                _pageFooterBand = new PageFooterBand();
            }

            _pageHeaderBand = new PageHeaderBand();
            _detailBand = new DetailBand();

            //
            // Report Header
            //
            if (_reportHeaderBand != null)
            {
                _reportHeaderBand.Name = "ReportHeader";
                _reportHeaderBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
                _reportHeaderBand.TextAlignment = TextAlignment.TopLeft;
            }

            //
            // Report Footer
            //
            if (_reportFooterBand != null)
            {
                _reportFooterBand.Name = "ReportFooter";
                _reportFooterBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
                _reportFooterBand.TextAlignment = TextAlignment.TopLeft;
            }

            //
            // Page Header
            //
            if (_pageHeaderBand != null)
            {
                _pageHeaderBand.Name = "PageHeader";
                _pageHeaderBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
                _pageHeaderBand.TextAlignment = TextAlignment.TopLeft;
                if (_isSubreport)
                    _pageHeaderBand.HeightF = 40f;
            }

            //
            // Page Footer
            //
            if (_pageFooterBand != null)
            {
                _pageFooterBand.Name = "PageFooter";
                _pageFooterBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
                _pageFooterBand.TextAlignment = TextAlignment.TopLeft;
            }

            // 
            // TopMargin
            // 
            if (_topMarginBand != null)
            {
                _topMarginBand.Name = "TopMargin";
                _topMarginBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
                _topMarginBand.TextAlignment = TextAlignment.TopLeft;
                _topMarginBand.HeightF = 10;
            }

            // 
            // BottomMargin
            //
            if (_bottomMarginBand != null)
            {
                _bottomMarginBand.Name = "BottomMargin";
                _bottomMarginBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
                _bottomMarginBand.TextAlignment = TextAlignment.TopLeft;
                _bottomMarginBand.HeightF = 10;
            }

            // 
            // Detail
            // 
            _detailBand.Name = "Detail";
            _detailBand.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
            _detailBand.TextAlignment = TextAlignment.TopLeft;

            // 
            // RipartoConsuntivo
            // 
            _report.Bands.Add(_detailBand);

            if (_reportHeaderBand != null)
                _report.Bands.Add(_reportHeaderBand);
            if (_reportFooterBand != null)
                _report.Bands.Add(_reportFooterBand);
            if (_pageHeaderBand != null)
                _report.Bands.Add(_pageHeaderBand);
            if (_pageFooterBand != null)
                _report.Bands.Add(_pageFooterBand);
            if (_topMarginBand != null)
                _report.Bands.Add(_topMarginBand);
            if (_bottomMarginBand != null)
                _report.Bands.Add(_bottomMarginBand);

            _report.BeforePrint += RipartoConsuntivo_BeforePrint;

            if(!_isSubreport && _addLogo)
                addLogo();
            if (!_isSubreport && _addPageNumberFooter)
                addFooter();
        }
Ejemplo n.º 27
0
 private void InitializeComponent()
 {
     string resourceFileName = "BaseReport.resx";
         this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
         this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // topMarginBand1
         //
         this.topMarginBand1.HeightF = 0F;
         this.topMarginBand1.Name = "topMarginBand1";
         //
         // bottomMarginBand1
         //
         this.bottomMarginBand1.HeightF = 94.79166F;
         this.bottomMarginBand1.Name = "bottomMarginBand1";
         //
         // detailBand1
         //
         this.detailBand1.HeightF = 100F;
         this.detailBand1.Name = "detailBand1";
         //
         // BaseReport
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.topMarginBand1,
         this.bottomMarginBand1,
         this.detailBand1});
         this.Margins = new System.Drawing.Printing.Margins(100, 100, 0, 95);
         this.Version = "14.1";
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 28
0
 private void method_2()
 {
     this.detailBand_0       = new DetailBand();
     this.IjSwogAv6          = new XRTable();
     this.xrtableRow_0       = new XRTableRow();
     this.xrtableCell_0      = new XRTableCell();
     this.xrtableCell_1      = new XRTableCell();
     this.xrtableCell_6      = new XRTableCell();
     this.xrtableCell_2      = new XRTableCell();
     this.xrtableCell_3      = new XRTableCell();
     this.xrtableCell_4      = new XRTableCell();
     this.xrtableCell_5      = new XRTableCell();
     this.pageHeaderBand_0   = new PageHeaderBand();
     this.xrline_0           = new XRLine();
     this.xrlabel_4          = new XRLabel();
     this.xrpageInfo_0       = new XRPageInfo();
     this.xrlabel_0          = new XRLabel();
     this.pageFooterBand_0   = new PageFooterBand();
     this.xrpageInfo_1       = new XRPageInfo();
     this.topMarginBand_0    = new TopMarginBand();
     this.bottomMarginBand_0 = new BottomMarginBand();
     this.groupHeaderBand_0  = new GroupHeaderBand();
     this.xrlabel_5          = new XRLabel();
     this.xrlabel_6          = new XRLabel();
     this.xrtable_1          = new XRTable();
     this.xrtableRow_3       = new XRTableRow();
     this.xrtableCell_16     = new XRTableCell();
     this.xrtableCell_17     = new XRTableCell();
     this.xrtableCell_18     = new XRTableCell();
     this.xrtableCell_19     = new XRTableCell();
     this.xrtableCell_20     = new XRTableCell();
     this.xrtableCell_21     = new XRTableCell();
     this.xrtableCell_22     = new XRTableCell();
     this.xrlabel_1          = new XRLabel();
     this.xrlabel_2          = new XRLabel();
     this.xrlabel_3          = new XRLabel();
     this.groupFooterBand_0  = new GroupFooterBand();
     this.xrtable_0          = new XRTable();
     this.xrtableRow_1       = new XRTableRow();
     this.xrtableCell_7      = new XRTableCell();
     this.xrtableCell_8      = new XRTableCell();
     this.xrtableCell_9      = new XRTableCell();
     this.xrtableCell_10     = new XRTableCell();
     this.xrtableRow_2       = new XRTableRow();
     this.xrtableCell_11     = new XRTableCell();
     this.xrtableCell_12     = new XRTableCell();
     this.xrtableCell_13     = new XRTableCell();
     this.xrtableCell_14     = new XRTableCell();
     this.xrtableCell_15     = new XRTableCell();
     this.IjSwogAv6.BeginInit();
     this.xrtable_1.BeginInit();
     this.xrtable_0.BeginInit();
     this.BeginInit();
     this.detailBand_0.Controls.AddRange(new XRControl[] { this.IjSwogAv6 });
     this.detailBand_0.Font    = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.detailBand_0.HeightF = 25f;
     this.detailBand_0.Name    = "Detail";
     this.detailBand_0.Padding = new PaddingInfo(0, 0, 0, 0, 100f);
     this.detailBand_0.StylePriority.UseFont = false;
     this.detailBand_0.TextAlignment         = TextAlignment.TopLeft;
     this.IjSwogAv6.Font          = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.IjSwogAv6.LocationFloat = new PointFloat(1.5625f, 0f);
     this.IjSwogAv6.Name          = "xrTable1";
     this.IjSwogAv6.Rows.AddRange(new XRTableRow[] { this.xrtableRow_0 });
     this.IjSwogAv6.SizeF = new SizeF(785.4375f, 25f);
     this.IjSwogAv6.StylePriority.UseFont          = false;
     this.IjSwogAv6.StylePriority.UseTextAlignment = false;
     this.IjSwogAv6.TextAlignment = TextAlignment.MiddleCenter;
     this.xrtableRow_0.Cells.AddRange(new XRTableCell[] { this.xrtableCell_0, this.xrtableCell_1, this.xrtableCell_6, this.xrtableCell_2, this.xrtableCell_3, this.xrtableCell_4, this.xrtableCell_5 });
     this.xrtableRow_0.Name     = "xrTableRow1";
     this.xrtableRow_0.Weight   = 1.0;
     this.xrtableCell_0.Borders = BorderSide.Bottom | BorderSide.Left;
     this.xrtableCell_0.Name    = "colVoucher";
     this.xrtableCell_0.Padding = new PaddingInfo(2, 0, 0, 0, 100f);
     this.xrtableCell_0.StylePriority.UseBorders       = false;
     this.xrtableCell_0.StylePriority.UsePadding       = false;
     this.xrtableCell_0.StylePriority.UseTextAlignment = false;
     this.xrtableCell_0.Text                           = "colVoucher";
     this.xrtableCell_0.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_0.Weight                         = 0.81150501246962559;
     this.xrtableCell_0.WordWrap                       = false;
     this.xrtableCell_1.Borders                        = BorderSide.Bottom | BorderSide.Left;
     this.xrtableCell_1.Name                           = "colDate";
     this.xrtableCell_1.Padding                        = new PaddingInfo(2, 0, 0, 0, 100f);
     this.xrtableCell_1.StylePriority.UseBorders       = false;
     this.xrtableCell_1.StylePriority.UsePadding       = false;
     this.xrtableCell_1.Text                           = "colDate";
     this.xrtableCell_1.Weight                         = 0.69162180392647521;
     this.xrtableCell_6.Borders                        = BorderSide.Bottom | BorderSide.Left;
     this.xrtableCell_6.Name                           = "colTransNum";
     this.xrtableCell_6.Padding                        = new PaddingInfo(2, 0, 0, 0, 100f);
     this.xrtableCell_6.StylePriority.UseBorders       = false;
     this.xrtableCell_6.StylePriority.UsePadding       = false;
     this.xrtableCell_6.Text                           = "colTransNum";
     this.xrtableCell_6.Weight                         = 0.93242173337283607;
     this.xrtableCell_2.Borders                        = BorderSide.Bottom | BorderSide.Left;
     this.xrtableCell_2.Name                           = "colRemark";
     this.xrtableCell_2.Padding                        = new PaddingInfo(3, 0, 0, 0, 100f);
     this.xrtableCell_2.StylePriority.UseBorders       = false;
     this.xrtableCell_2.StylePriority.UsePadding       = false;
     this.xrtableCell_2.StylePriority.UseTextAlignment = false;
     this.xrtableCell_2.Text                           = "colRemark";
     this.xrtableCell_2.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_2.Weight                         = 2.5039875056813612;
     this.xrtableCell_2.WordWrap                       = false;
     this.xrtableCell_3.Borders                        = BorderSide.Bottom | BorderSide.Left;
     this.xrtableCell_3.Name                           = "colCrAccount";
     this.xrtableCell_3.Padding                        = new PaddingInfo(2, 0, 0, 0, 100f);
     this.xrtableCell_3.StylePriority.UseBorders       = false;
     this.xrtableCell_3.StylePriority.UsePadding       = false;
     this.xrtableCell_3.Text                           = "colCrAccount";
     this.xrtableCell_3.Weight                         = 0.68805428834343063;
     this.xrtableCell_3.WordWrap                       = false;
     this.xrtableCell_4.Borders                        = BorderSide.Bottom | BorderSide.Left;
     this.xrtableCell_4.Name                           = "colDebitAmt";
     this.xrtableCell_4.Padding                        = new PaddingInfo(0, 2, 0, 0, 100f);
     this.xrtableCell_4.StylePriority.UseBorders       = false;
     this.xrtableCell_4.StylePriority.UsePadding       = false;
     this.xrtableCell_4.StylePriority.UseTextAlignment = false;
     this.xrtableCell_4.Text                           = "colDebitAmt";
     this.xrtableCell_4.TextAlignment                  = TextAlignment.MiddleRight;
     this.xrtableCell_4.Weight                         = 0.74786009682869947;
     this.xrtableCell_4.WordWrap                       = false;
     this.xrtableCell_5.Borders                        = BorderSide.Bottom | BorderSide.Right | BorderSide.Left;
     this.xrtableCell_5.Name                           = "colCreditAmt";
     this.xrtableCell_5.Padding                        = new PaddingInfo(0, 5, 0, 0, 100f);
     this.xrtableCell_5.StylePriority.UseBorders       = false;
     this.xrtableCell_5.StylePriority.UsePadding       = false;
     this.xrtableCell_5.StylePriority.UseTextAlignment = false;
     this.xrtableCell_5.Text                           = "colCreditAmt";
     this.xrtableCell_5.TextAlignment                  = TextAlignment.MiddleRight;
     this.xrtableCell_5.Weight                         = 0.91321573874439244;
     this.pageHeaderBand_0.Controls.AddRange(new XRControl[] { this.xrline_0, this.xrlabel_4, this.xrpageInfo_0, this.xrlabel_0 });
     this.pageHeaderBand_0.HeightF       = 26.87501f;
     this.pageHeaderBand_0.Name          = "PageHeader";
     this.pageHeaderBand_0.Padding       = new PaddingInfo(0, 0, 0, 0, 100f);
     this.pageHeaderBand_0.TextAlignment = TextAlignment.TopLeft;
     this.pageHeaderBand_0.BeforePrint  += new PrintEventHandler(this.pageHeaderBand_0_BeforePrint);
     this.xrline_0.LocationFloat         = new PointFloat(0f, 23.91669f);
     this.xrline_0.Name                               = "xrLine1";
     this.xrline_0.SizeF                              = new SizeF(785.375f, 2.958328f);
     this.xrlabel_4.Font                              = new Font("Arial", 9f, FontStyle.Italic, GraphicsUnit.Point, 0);
     this.xrlabel_4.ForeColor                         = Color.Black;
     this.xrlabel_4.LocationFloat                     = new PointFloat(0f, 4.000001f);
     this.xrlabel_4.Name                              = "Lbl_Interval";
     this.xrlabel_4.Padding                           = new PaddingInfo(2, 2, 0, 0, 100f);
     this.xrlabel_4.SizeF                             = new SizeF(407.2917f, 16f);
     this.xrlabel_4.StylePriority.UseFont             = false;
     this.xrlabel_4.StylePriority.UseForeColor        = false;
     this.xrlabel_4.StylePriority.UseTextAlignment    = false;
     this.xrlabel_4.Text                              = "Từ ng\x00e0y 01/01/2009 đến ng\x00e0y 12/12/2009";
     this.xrlabel_4.TextAlignment                     = TextAlignment.MiddleLeft;
     this.xrlabel_4.WordWrap                          = false;
     this.xrpageInfo_0.Font                           = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrpageInfo_0.LocationFloat                  = new PointFloat(749f, 0f);
     this.xrpageInfo_0.Name                           = "xrPageInfo1";
     this.xrpageInfo_0.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
     this.xrpageInfo_0.SizeF                          = new SizeF(36.125f, 23f);
     this.xrpageInfo_0.StylePriority.UseFont          = false;
     this.xrpageInfo_0.StylePriority.UseTextAlignment = false;
     this.xrpageInfo_0.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrlabel_0.Font                              = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrlabel_0.LocationFloat                     = new PointFloat(649f, 0f);
     this.xrlabel_0.Name                              = "xrLabel11";
     this.xrlabel_0.Padding                           = new PaddingInfo(2, 2, 0, 0, 100f);
     this.xrlabel_0.SizeF                             = new SizeF(100f, 23f);
     this.xrlabel_0.StylePriority.UseFont             = false;
     this.xrlabel_0.StylePriority.UseTextAlignment    = false;
     this.xrlabel_0.Text                              = "Trang số :";
     this.xrlabel_0.TextAlignment                     = TextAlignment.MiddleRight;
     this.pageFooterBand_0.Controls.AddRange(new XRControl[] { this.xrpageInfo_1 });
     this.pageFooterBand_0.HeightF       = 23f;
     this.pageFooterBand_0.Name          = "PageFooter";
     this.pageFooterBand_0.Padding       = new PaddingInfo(0, 0, 0, 0, 100f);
     this.pageFooterBand_0.TextAlignment = TextAlignment.TopLeft;
     this.xrpageInfo_1.Font                           = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrpageInfo_1.LocationFloat                  = new PointFloat(514.125f, 0f);
     this.xrpageInfo_1.Name                           = "xrPageInfo2";
     this.xrpageInfo_1.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
     this.xrpageInfo_1.PageInfo                       = PageInfo.DateTime;
     this.xrpageInfo_1.SizeF                          = new SizeF(271f, 23f);
     this.xrpageInfo_1.StylePriority.UseFont          = false;
     this.xrpageInfo_1.StylePriority.UseTextAlignment = false;
     this.xrpageInfo_1.TextAlignment                  = TextAlignment.MiddleRight;
     this.topMarginBand_0.HeightF                     = 40f;
     this.topMarginBand_0.Name                        = "topMarginBand1";
     this.bottomMarginBand_0.HeightF                  = 40f;
     this.bottomMarginBand_0.Name                     = "bottomMarginBand1";
     this.groupHeaderBand_0.Controls.AddRange(new XRControl[] { this.xrlabel_5, this.xrlabel_6, this.xrtable_1, this.xrlabel_1, this.xrlabel_2, this.xrlabel_3 });
     this.groupHeaderBand_0.HeightF                = 50f;
     this.groupHeaderBand_0.Name                   = "GroupHeader1";
     this.xrlabel_5.Font                           = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0xa3);
     this.xrlabel_5.ForeColor                      = Color.RoyalBlue;
     this.xrlabel_5.LocationFloat                  = new PointFloat(667.4167f, 0f);
     this.xrlabel_5.Name                           = "Lbl_BeginAmt";
     this.xrlabel_5.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
     this.xrlabel_5.SizeF                          = new SizeF(119.5832f, 25f);
     this.xrlabel_5.StylePriority.UseFont          = false;
     this.xrlabel_5.StylePriority.UseForeColor     = false;
     this.xrlabel_5.StylePriority.UseTextAlignment = false;
     this.xrlabel_5.Text                           = "0";
     this.xrlabel_5.TextAlignment                  = TextAlignment.MiddleRight;
     this.xrlabel_5.WordWrap                       = false;
     this.xrlabel_5.BeforePrint                   += new PrintEventHandler(this.xrlabel_5_BeforePrint);
     this.xrlabel_6.Font                           = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0xa3);
     this.xrlabel_6.LocationFloat                  = new PointFloat(569.8334f, 0f);
     this.xrlabel_6.Name                           = "xrLabel1";
     this.xrlabel_6.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
     this.xrlabel_6.SizeF                          = new SizeF(97.58331f, 25f);
     this.xrlabel_6.StylePriority.UseFont          = false;
     this.xrlabel_6.StylePriority.UseTextAlignment = false;
     this.xrlabel_6.Text                           = "Số dư đầu kỳ :";
     this.xrlabel_6.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrlabel_6.WordWrap                       = false;
     this.xrtable_1.Font                           = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.xrtable_1.LocationFloat                  = new PointFloat(0f, 25f);
     this.xrtable_1.Name                           = "xrTable2";
     this.xrtable_1.Rows.AddRange(new XRTableRow[] { this.xrtableRow_3 });
     this.xrtable_1.SizeF = new SizeF(787f, 25f);
     this.xrtable_1.StylePriority.UseFont          = false;
     this.xrtable_1.StylePriority.UseTextAlignment = false;
     this.xrtable_1.TextAlignment = TextAlignment.MiddleCenter;
     this.xrtableRow_3.Cells.AddRange(new XRTableCell[] { this.xrtableCell_16, this.xrtableCell_17, this.xrtableCell_18, this.xrtableCell_19, this.xrtableCell_20, this.xrtableCell_21, this.xrtableCell_22 });
     this.xrtableRow_3.Name      = "xrTableRow2";
     this.xrtableRow_3.Weight    = 1.0;
     this.xrtableCell_16.Borders = BorderSide.Bottom | BorderSide.Top | BorderSide.Left;
     this.xrtableCell_16.Name    = "xrTableCell7";
     this.xrtableCell_16.StylePriority.UseBorders = false;
     this.xrtableCell_16.Text    = "Số chứng từ";
     this.xrtableCell_16.Weight  = 0.82600466229448832;
     this.xrtableCell_17.Borders = BorderSide.Bottom | BorderSide.Top | BorderSide.Left;
     this.xrtableCell_17.Name    = "xrTableCell8";
     this.xrtableCell_17.StylePriority.UseBorders = false;
     this.xrtableCell_17.Text    = "Ng\x00e0y";
     this.xrtableCell_17.Weight  = 0.691621910124823;
     this.xrtableCell_18.Borders = BorderSide.Bottom | BorderSide.Top | BorderSide.Left;
     this.xrtableCell_18.Name    = "xrTableCell13";
     this.xrtableCell_18.StylePriority.UseBorders = false;
     this.xrtableCell_18.Text    = "Số giao dịch";
     this.xrtableCell_18.Weight  = 0.93242173337283629;
     this.xrtableCell_19.Borders = BorderSide.Bottom | BorderSide.Top | BorderSide.Left;
     this.xrtableCell_19.Name    = "xrTableCell1";
     this.xrtableCell_19.StylePriority.UseBorders = false;
     this.xrtableCell_19.Text    = "Diễn giải giao dịch";
     this.xrtableCell_19.Weight  = 2.5039873640835637;
     this.xrtableCell_20.Borders = BorderSide.Bottom | BorderSide.Top | BorderSide.Left;
     this.xrtableCell_20.Name    = "xrTableCell10";
     this.xrtableCell_20.StylePriority.UseBorders = false;
     this.xrtableCell_20.Text    = "TK đối ứng";
     this.xrtableCell_20.Weight  = 0.68805428834343063;
     this.xrtableCell_21.Borders = BorderSide.Bottom | BorderSide.Top | BorderSide.Left;
     this.xrtableCell_21.Name    = "xrTableCell11";
     this.xrtableCell_21.StylePriority.UseBorders = false;
     this.xrtableCell_21.Text    = "Ghi nợ";
     this.xrtableCell_21.Weight  = 0.74786009682869925;
     this.xrtableCell_22.Borders = BorderSide.All;
     this.xrtableCell_22.Name    = "xrTableCell12";
     this.xrtableCell_22.StylePriority.UseBorders = false;
     this.xrtableCell_22.Text                      = "Ghi c\x00f3";
     this.xrtableCell_22.Weight                    = 0.91321573874439266;
     this.xrlabel_1.Font                           = new Font("Arial", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 0xa3);
     this.xrlabel_1.ForeColor                      = Color.RoyalBlue;
     this.xrlabel_1.LocationFloat                  = new PointFloat(217.6562f, 0f);
     this.xrlabel_1.Name                           = "Lbl_AccountName";
     this.xrlabel_1.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
     this.xrlabel_1.SizeF                          = new SizeF(352.1772f, 25f);
     this.xrlabel_1.StylePriority.UseFont          = false;
     this.xrlabel_1.StylePriority.UseForeColor     = false;
     this.xrlabel_1.StylePriority.UseTextAlignment = false;
     this.xrlabel_1.Text                           = "123546513213";
     this.xrlabel_1.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrlabel_1.WordWrap                       = false;
     this.xrlabel_1.BeforePrint                   += new PrintEventHandler(this.xrlabel_1_BeforePrint);
     this.xrlabel_2.Font                           = new Font("Arial", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 0xa3);
     this.xrlabel_2.ForeColor                      = Color.RoyalBlue;
     this.xrlabel_2.LocationFloat                  = new PointFloat(114.3969f, 0f);
     this.xrlabel_2.Name                           = "Lbl_Account";
     this.xrlabel_2.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
     this.xrlabel_2.SizeF                          = new SizeF(102.2593f, 25f);
     this.xrlabel_2.StylePriority.UseFont          = false;
     this.xrlabel_2.StylePriority.UseForeColor     = false;
     this.xrlabel_2.StylePriority.UseTextAlignment = false;
     this.xrlabel_2.Text                           = "3331-1-0003";
     this.xrlabel_2.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrlabel_2.WordWrap                       = false;
     this.xrlabel_3.Font                           = new Font("Arial", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 0xa3);
     this.xrlabel_3.ForeColor                      = Color.RoyalBlue;
     this.xrlabel_3.LocationFloat                  = new PointFloat(5.000003f, 0f);
     this.xrlabel_3.Name                           = "xrLabel2";
     this.xrlabel_3.Padding                        = new PaddingInfo(2, 2, 0, 0, 100f);
     this.xrlabel_3.SizeF                          = new SizeF(108.5417f, 25f);
     this.xrlabel_3.StylePriority.UseFont          = false;
     this.xrlabel_3.StylePriority.UseForeColor     = false;
     this.xrlabel_3.StylePriority.UseTextAlignment = false;
     this.xrlabel_3.Text                           = "Số t\x00e0i khoản :";
     this.xrlabel_3.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrlabel_3.WordWrap                       = false;
     this.groupFooterBand_0.Controls.AddRange(new XRControl[] { this.xrtable_0 });
     this.groupFooterBand_0.HeightF   = 50f;
     this.groupFooterBand_0.Name      = "GroupFooter1";
     this.groupFooterBand_0.PageBreak = PageBreak.AfterBand;
     this.xrtable_0.LocationFloat     = new PointFloat(6.103516E-05f, 0f);
     this.xrtable_0.Name = "xrTable3";
     this.xrtable_0.Rows.AddRange(new XRTableRow[] { this.xrtableRow_1, this.xrtableRow_2 });
     this.xrtable_0.SizeF = new SizeF(786.9999f, 50f);
     this.xrtableRow_1.Cells.AddRange(new XRTableCell[] { this.xrtableCell_7, this.xrtableCell_8, this.xrtableCell_9, this.xrtableCell_10 });
     this.xrtableRow_1.Name     = "xrTableRow3";
     this.xrtableRow_1.Weight   = 1.0;
     this.xrtableCell_7.Name    = "xrTableCell3";
     this.xrtableCell_7.Weight  = 1.1588311835563974;
     this.xrtableCell_8.Font    = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.xrtableCell_8.Name    = "xrTableCell2";
     this.xrtableCell_8.Padding = new PaddingInfo(2, 0, 0, 0, 100f);
     this.xrtableCell_8.StylePriority.UseFont          = false;
     this.xrtableCell_8.StylePriority.UsePadding       = false;
     this.xrtableCell_8.StylePriority.UseTextAlignment = false;
     this.xrtableCell_8.Text                            = "Tổng cộng :";
     this.xrtableCell_8.TextAlignment                   = TextAlignment.MiddleLeft;
     this.xrtableCell_8.Weight                          = 1.0794158632179445;
     this.xrtableCell_9.Font                            = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.xrtableCell_9.Name                            = "colSumDebit";
     this.xrtableCell_9.Padding                         = new PaddingInfo(0, 2, 0, 0, 100f);
     this.xrtableCell_9.StylePriority.UseFont           = false;
     this.xrtableCell_9.StylePriority.UsePadding        = false;
     this.xrtableCell_9.StylePriority.UseTextAlignment  = false;
     this.xrtableCell_9.Text                            = "colSumDebit";
     this.xrtableCell_9.TextAlignment                   = TextAlignment.MiddleRight;
     this.xrtableCell_9.Weight                          = 0.38662202232537624;
     this.xrtableCell_10.Borders                        = BorderSide.None;
     this.xrtableCell_10.Font                           = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.xrtableCell_10.Name                           = "colSumCredit";
     this.xrtableCell_10.Padding                        = new PaddingInfo(0, 5, 0, 0, 100f);
     this.xrtableCell_10.StylePriority.UseBorders       = false;
     this.xrtableCell_10.StylePriority.UseFont          = false;
     this.xrtableCell_10.StylePriority.UsePadding       = false;
     this.xrtableCell_10.StylePriority.UseTextAlignment = false;
     this.xrtableCell_10.Text                           = "colSumCredit";
     this.xrtableCell_10.TextAlignment                  = TextAlignment.MiddleRight;
     this.xrtableCell_10.Weight                         = 0.37513093090028188;
     this.xrtableRow_2.Cells.AddRange(new XRTableCell[] { this.xrtableCell_11, this.xrtableCell_12, this.xrtableCell_13, this.xrtableCell_14, this.xrtableCell_15 });
     this.xrtableRow_2.Name      = "xrTableRow4";
     this.xrtableRow_2.Weight    = 1.0;
     this.xrtableCell_11.Name    = "xrTableCell4";
     this.xrtableCell_11.Weight  = 1.1588311835563974;
     this.xrtableCell_12.Font    = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.xrtableCell_12.Name    = "xrTableCell15";
     this.xrtableCell_12.Padding = new PaddingInfo(2, 0, 0, 0, 100f);
     this.xrtableCell_12.StylePriority.UseFont          = false;
     this.xrtableCell_12.StylePriority.UsePadding       = false;
     this.xrtableCell_12.StylePriority.UseTextAlignment = false;
     this.xrtableCell_12.Text                           = "Số dư cuối kỳ :";
     this.xrtableCell_12.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_12.Weight                         = 0.39374196441409426;
     this.xrtableCell_13.Font                           = new Font("Arial", 9f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.xrtableCell_13.Name                           = "colEndAmt";
     this.xrtableCell_13.Padding                        = new PaddingInfo(2, 0, 0, 0, 100f);
     this.xrtableCell_13.StylePriority.UseFont          = false;
     this.xrtableCell_13.StylePriority.UsePadding       = false;
     this.xrtableCell_13.StylePriority.UseTextAlignment = false;
     this.xrtableCell_13.Text                           = "colEndAmt";
     this.xrtableCell_13.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_13.Weight                         = 0.7650892191423031;
     this.xrtableCell_13.BeforePrint                   += new PrintEventHandler(this.xrtableCell_13_BeforePrint);
     this.xrtableCell_14.Name                           = "xrTableCell6";
     this.xrtableCell_14.Weight                         = 0.30720670198692346;
     this.xrtableCell_15.Name                           = "xrTableCell9";
     this.xrtableCell_15.Weight                         = 0.37513093090028188;
     base.Bands.AddRange(new Band[] { this.detailBand_0, this.pageHeaderBand_0, this.pageFooterBand_0, this.topMarginBand_0, this.bottomMarginBand_0, this.groupHeaderBand_0, this.groupFooterBand_0 });
     base.Font         = new Font("Arial", 9f, FontStyle.Regular, GraphicsUnit.Point, 0);
     base.Margins      = new Margins(20, 20, 40, 40);
     base.PageHeight   = 0x491;
     base.PageWidth    = 0x33b;
     base.PaperKind    = PaperKind.A4;
     base.SnapToGrid   = false;
     base.Version      = "9.3";
     this.BeforePrint += new PrintEventHandler(this.acc_info_BeforePrint);
     this.IjSwogAv6.EndInit();
     this.xrtable_1.EndInit();
     this.xrtable_0.EndInit();
     this.EndInit();
 }
Ejemplo n.º 29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "StepReport.resx";
         this.components = new System.ComponentModel.Container();
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.tblActs = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.srcActs = new System.Windows.Forms.BindingSource(this.components);
         this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell52 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell();
         this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
         this.detailSteps = new DevExpress.XtraReports.UI.DetailBand();
         this.tblSteps = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupHeader1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
         this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
         this.GroupFooter1 = new DevExpress.XtraReports.UI.GroupFooterBand();
         this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
         ((System.ComponentModel.ISupportInitialize)(this.tblActs)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.srcActs)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblSteps)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // Detail
         //
         this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblActs});
         this.Detail.HeightF = 15F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         this.Detail.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
         //
         // tblActs
         //
         this.tblActs.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblActs.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblActs.Name = "tblActs";
         this.tblActs.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1});
         this.tblActs.SizeF = new System.Drawing.SizeF(1069F, 15F);
         this.tblActs.StylePriority.UseBorders = false;
         //
         // xrTableRow1
         //
         this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell1,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell2,
         this.xrTableCell10,
         this.xrTableCell3,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell11});
         this.xrTableRow1.Name = "xrTableRow1";
         this.xrTableRow1.Weight = 1D;
         //
         // xrTableCell14
         //
         this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "MeteringDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell14.Name = "xrTableCell14";
         this.xrTableCell14.StylePriority.UseBorders = false;
         this.xrTableCell14.StylePriority.UseTextAlignment = false;
         this.xrTableCell14.Text = "xrTableCell14";
         this.xrTableCell14.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell14.Weight = 0.091450357298137608D;
         //
         // xrTableCell15
         //
         this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell15.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "StateName")});
         this.xrTableCell15.Name = "xrTableCell15";
         this.xrTableCell15.StylePriority.UseBorders = false;
         this.xrTableCell15.StylePriority.UseTextAlignment = false;
         this.xrTableCell15.Text = "xrTableCell15";
         this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell15.Weight = 0.10669208251214116D;
         //
         // xrTableCell1
         //
         this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "EmployeeName")});
         this.xrTableCell1.Name = "xrTableCell1";
         this.xrTableCell1.StylePriority.UseBorders = false;
         this.xrTableCell1.StylePriority.UseTextAlignment = false;
         this.xrTableCell1.Text = "xrTableCell1";
         this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell1.Weight = 0.27435106813559013D;
         //
         // xrTableCell7
         //
         this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "UnitName")});
         this.xrTableCell7.Name = "xrTableCell7";
         this.xrTableCell7.StylePriority.UseBorders = false;
         this.xrTableCell7.StylePriority.UseTextAlignment = false;
         this.xrTableCell7.Text = "xrTableCell7";
         this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell7.Weight = 0.18290071309274597D;
         //
         // xrTableCell8
         //
         this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Address")});
         this.xrTableCell8.Name = "xrTableCell8";
         this.xrTableCell8.StylePriority.UseBorders = false;
         this.xrTableCell8.StylePriority.UseTextAlignment = false;
         this.xrTableCell8.Text = "xrTableCell8";
         this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell8.Weight = 0.22862589249357956D;
         //
         // xrTableCell9
         //
         this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerName")});
         this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell9.Name = "xrTableCell9";
         this.xrTableCell9.StylePriority.UseBorders = false;
         this.xrTableCell9.StylePriority.UseFont = false;
         this.xrTableCell9.StylePriority.UseTextAlignment = false;
         this.xrTableCell9.Text = "xrTableCell9";
         this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell9.Weight = 0.18290070970980582D;
         //
         // xrTableCell2
         //
         this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CustomerPhone")});
         this.xrTableCell2.Name = "xrTableCell2";
         this.xrTableCell2.StylePriority.UseBorders = false;
         this.xrTableCell2.StylePriority.UseTextAlignment = false;
         this.xrTableCell2.Text = "xrTableCell2";
         this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell2.Weight = 0.10669207988096552D;
         //
         // xrTableCell10
         //
         this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "AreaAmount")});
         this.xrTableCell10.Name = "xrTableCell10";
         this.xrTableCell10.StylePriority.UseBorders = false;
         this.xrTableCell10.StylePriority.UseTextAlignment = false;
         this.xrTableCell10.Text = "xrTableCell10";
         this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell10.Weight = 0.076208630856557685D;
         //
         // xrTableCell3
         //
         this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ActAmount")});
         this.xrTableCell3.Name = "xrTableCell3";
         this.xrTableCell3.StylePriority.UseBorders = false;
         this.xrTableCell3.StylePriority.UseTextAlignment = false;
         this.xrTableCell3.Text = "xrTableCell3";
         this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell3.Weight = 0.076208628889134711D;
         //
         // xrTableCell12
         //
         this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "CategoryName")});
         this.xrTableCell12.Name = "xrTableCell12";
         this.xrTableCell12.StylePriority.UseBorders = false;
         this.xrTableCell12.StylePriority.UseTextAlignment = false;
         this.xrTableCell12.Text = "xrTableCell12";
         this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell12.Weight = 0.10669208419765233D;
         //
         // xrTableCell13
         //
         this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ActDate", "{0:dd.MM.yyyy}")});
         this.xrTableCell13.Name = "xrTableCell13";
         this.xrTableCell13.StylePriority.UseBorders = false;
         this.xrTableCell13.StylePriority.UseTextAlignment = false;
         this.xrTableCell13.Text = "xrTableCell13";
         this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell13.Weight = 0.091450355559682034D;
         //
         // xrTableCell11
         //
         this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ActNum")});
         this.xrTableCell11.Name = "xrTableCell11";
         this.xrTableCell11.StylePriority.UseBorders = false;
         this.xrTableCell11.StylePriority.UseTextAlignment = false;
         this.xrTableCell11.Text = "xrTableCell11";
         this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell11.Weight = 0.10516790311461627D;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 51F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 50F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // srcActs
         //
         this.srcActs.DataSource = typeof(Kayflow.Reports.ActCollection);
         //
         // ReportHeader
         //
         this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1,
         this.xrTable5});
         this.ReportHeader.HeightF = 43.25F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // xrTable1
         //
         this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)));
         this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(3.178914E-05F, 0F);
         this.xrTable1.Name = "xrTable1";
         this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3});
         this.xrTable1.SizeF = new System.Drawing.SizeF(1069F, 27.49999F);
         this.xrTable1.StylePriority.UseBorders = false;
         this.xrTable1.StylePriority.UseFont = false;
         this.xrTable1.StylePriority.UseTextAlignment = false;
         this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow3
         //
         this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell22,
         this.xrTableCell19,
         this.xrTableCell23,
         this.xrTableCell16,
         this.xrTableCell24,
         this.xrTableCell20,
         this.xrTableCell25,
         this.xrTableCell17,
         this.xrTableCell26,
         this.xrTableCell21,
         this.xrTableCell27,
         this.xrTableCell18});
         this.xrTableRow3.Name = "xrTableRow3";
         this.xrTableRow3.Weight = 1D;
         //
         // xrTableCell22
         //
         this.xrTableCell22.Multiline = true;
         this.xrTableCell22.Name = "xrTableCell22";
         this.xrTableCell22.StylePriority.UseTextAlignment = false;
         this.xrTableCell22.Text = "Дата\r\nзаміру";
         this.xrTableCell22.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell22.Weight = 0.16838166867604984D;
         //
         // xrTableCell19
         //
         this.xrTableCell19.Name = "xrTableCell19";
         this.xrTableCell19.Text = "Статус";
         this.xrTableCell19.Weight = 0.19644527952731267D;
         //
         // xrTableCell23
         //
         this.xrTableCell23.Name = "xrTableCell23";
         this.xrTableCell23.Text = "Працівник";
         this.xrTableCell23.Weight = 0.50514498818578624D;
         //
         // xrTableCell16
         //
         this.xrTableCell16.Name = "xrTableCell16";
         this.xrTableCell16.Text = "Населений пункт";
         this.xrTableCell16.Weight = 0.336763323078209D;
         //
         // xrTableCell24
         //
         this.xrTableCell24.Name = "xrTableCell24";
         this.xrTableCell24.Text = "Адреса";
         this.xrTableCell24.Weight = 0.42095415563199762D;
         //
         // xrTableCell20
         //
         this.xrTableCell20.Name = "xrTableCell20";
         this.xrTableCell20.Text = "Замовник";
         this.xrTableCell20.Weight = 0.33676332307820905D;
         //
         // xrTableCell25
         //
         this.xrTableCell25.Name = "xrTableCell25";
         this.xrTableCell25.Text = "№ телефону";
         this.xrTableCell25.Weight = 0.19644527952731264D;
         //
         // xrTableCell17
         //
         this.xrTableCell17.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell17.Multiline = true;
         this.xrTableCell17.Name = "xrTableCell17";
         this.xrTableCell17.StylePriority.UseFont = false;
         this.xrTableCell17.Text = "К-сть\r\n ділянок";
         this.xrTableCell17.Weight = 0.14031805247207801D;
         //
         // xrTableCell26
         //
         this.xrTableCell26.Multiline = true;
         this.xrTableCell26.Name = "xrTableCell26";
         this.xrTableCell26.Text = "К-сть\r\nактів";
         this.xrTableCell26.Weight = 0.14031805247207793D;
         //
         // xrTableCell21
         //
         this.xrTableCell21.Name = "xrTableCell21";
         this.xrTableCell21.Text = "Категорія";
         this.xrTableCell21.Weight = 0.19644527952731267D;
         //
         // xrTableCell27
         //
         this.xrTableCell27.Multiline = true;
         this.xrTableCell27.Name = "xrTableCell27";
         this.xrTableCell27.Text = "Дата\r\nдоговору";
         this.xrTableCell27.Weight = 0.16838166867604984D;
         //
         // xrTableCell18
         //
         this.xrTableCell18.Name = "xrTableCell18";
         this.xrTableCell18.Text = "№ договору";
         this.xrTableCell18.Weight = 0.19363892914760436D;
         //
         // xrTable5
         //
         this.xrTable5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable5.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 28.25F);
         this.xrTable5.Name = "xrTable5";
         this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow6});
         this.xrTable5.SizeF = new System.Drawing.SizeF(1069F, 15F);
         this.xrTable5.StylePriority.UseBorders = false;
         this.xrTable5.StylePriority.UseFont = false;
         this.xrTable5.StylePriority.UseTextAlignment = false;
         this.xrTable5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow6
         //
         this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell45,
         this.xrTableCell46,
         this.xrTableCell47,
         this.xrTableCell48,
         this.xrTableCell49,
         this.xrTableCell50,
         this.xrTableCell51,
         this.xrTableCell52,
         this.xrTableCell53,
         this.xrTableCell54,
         this.xrTableCell55,
         this.xrTableCell56});
         this.xrTableRow6.Name = "xrTableRow6";
         this.xrTableRow6.Weight = 1D;
         //
         // xrTableCell45
         //
         this.xrTableCell45.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell45.Multiline = true;
         this.xrTableCell45.Name = "xrTableCell45";
         this.xrTableCell45.StylePriority.UseBorders = false;
         this.xrTableCell45.StylePriority.UseTextAlignment = false;
         this.xrTableCell45.Text = "1";
         this.xrTableCell45.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell45.Weight = 0.16838166867604984D;
         //
         // xrTableCell46
         //
         this.xrTableCell46.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell46.Name = "xrTableCell46";
         this.xrTableCell46.StylePriority.UseBorders = false;
         this.xrTableCell46.Text = "2";
         this.xrTableCell46.Weight = 0.19644527952731267D;
         //
         // xrTableCell47
         //
         this.xrTableCell47.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell47.Name = "xrTableCell47";
         this.xrTableCell47.StylePriority.UseBorders = false;
         this.xrTableCell47.Text = "3";
         this.xrTableCell47.Weight = 0.50514498818578624D;
         //
         // xrTableCell48
         //
         this.xrTableCell48.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell48.Name = "xrTableCell48";
         this.xrTableCell48.StylePriority.UseBorders = false;
         this.xrTableCell48.Text = "4";
         this.xrTableCell48.Weight = 0.336763323078209D;
         //
         // xrTableCell49
         //
         this.xrTableCell49.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell49.Name = "xrTableCell49";
         this.xrTableCell49.StylePriority.UseBorders = false;
         this.xrTableCell49.Text = "5";
         this.xrTableCell49.Weight = 0.42095415563199762D;
         //
         // xrTableCell50
         //
         this.xrTableCell50.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell50.Name = "xrTableCell50";
         this.xrTableCell50.StylePriority.UseBorders = false;
         this.xrTableCell50.Text = "6";
         this.xrTableCell50.Weight = 0.33676332307820905D;
         //
         // xrTableCell51
         //
         this.xrTableCell51.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell51.Name = "xrTableCell51";
         this.xrTableCell51.StylePriority.UseBorders = false;
         this.xrTableCell51.Text = "7";
         this.xrTableCell51.Weight = 0.19644527952731264D;
         //
         // xrTableCell52
         //
         this.xrTableCell52.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell52.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell52.Multiline = true;
         this.xrTableCell52.Name = "xrTableCell52";
         this.xrTableCell52.StylePriority.UseBorders = false;
         this.xrTableCell52.StylePriority.UseFont = false;
         this.xrTableCell52.Text = "8";
         this.xrTableCell52.Weight = 0.14031805247207801D;
         //
         // xrTableCell53
         //
         this.xrTableCell53.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell53.Multiline = true;
         this.xrTableCell53.Name = "xrTableCell53";
         this.xrTableCell53.StylePriority.UseBorders = false;
         this.xrTableCell53.Text = "9";
         this.xrTableCell53.Weight = 0.14031805247207793D;
         //
         // xrTableCell54
         //
         this.xrTableCell54.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell54.Name = "xrTableCell54";
         this.xrTableCell54.StylePriority.UseBorders = false;
         this.xrTableCell54.Text = "10";
         this.xrTableCell54.Weight = 0.19644527952731267D;
         //
         // xrTableCell55
         //
         this.xrTableCell55.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell55.Multiline = true;
         this.xrTableCell55.Name = "xrTableCell55";
         this.xrTableCell55.StylePriority.UseBorders = false;
         this.xrTableCell55.Text = "11";
         this.xrTableCell55.Weight = 0.16838166867604984D;
         //
         // xrTableCell56
         //
         this.xrTableCell56.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell56.Name = "xrTableCell56";
         this.xrTableCell56.StylePriority.UseBorders = false;
         this.xrTableCell56.Text = "12";
         this.xrTableCell56.Weight = 0.19363892914760436D;
         //
         // DetailReport
         //
         this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.detailSteps,
         this.GroupHeader1,
         this.GroupFooter1});
         this.DetailReport.DataMember = "Steps";
         this.DetailReport.DataSource = this.srcActs;
         this.DetailReport.Level = 0;
         this.DetailReport.Name = "DetailReport";
         //
         // detailSteps
         //
         this.detailSteps.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.tblSteps});
         this.detailSteps.HeightF = 15F;
         this.detailSteps.KeepTogether = true;
         this.detailSteps.Name = "detailSteps";
         this.detailSteps.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.detailSteps_BeforePrint);
         //
         // tblSteps
         //
         this.tblSteps.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.tblSteps.Font = new System.Drawing.Font("Times New Roman", 8F);
         this.tblSteps.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.tblSteps.Name = "tblSteps";
         this.tblSteps.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
         this.tblSteps.SizeF = new System.Drawing.SizeF(430F, 15F);
         this.tblSteps.StylePriority.UseBorders = false;
         this.tblSteps.StylePriority.UseFont = false;
         //
         // xrTableRow2
         //
         this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell32,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6});
         this.xrTableRow2.Name = "xrTableRow2";
         this.xrTableRow2.Weight = 1D;
         //
         // xrTableCell32
         //
         this.xrTableCell32.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Steps.OrdNum")});
         this.xrTableCell32.Name = "xrTableCell32";
         this.xrTableCell32.StylePriority.UseBorders = false;
         this.xrTableCell32.StylePriority.UseTextAlignment = false;
         this.xrTableCell32.Text = "xrTableCell32";
         this.xrTableCell32.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell32.Weight = 0.18575856007409755D;
         //
         // xrTableCell4
         //
         this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Steps.ActionName")});
         this.xrTableCell4.Name = "xrTableCell4";
         this.xrTableCell4.StylePriority.UseBorders = false;
         this.xrTableCell4.StylePriority.UseTextAlignment = false;
         this.xrTableCell4.Text = "xrTableCell4";
         this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell4.Weight = 0.650154799860234D;
         //
         // xrTableCell5
         //
         this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Steps.Delivered", "{0:dd.MM.yyyy}")});
         this.xrTableCell5.Name = "xrTableCell5";
         this.xrTableCell5.StylePriority.UseBorders = false;
         this.xrTableCell5.StylePriority.UseTextAlignment = false;
         this.xrTableCell5.Text = "xrTableCell5";
         this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell5.Weight = 0.24767801857585131D;
         //
         // xrTableCell6
         //
         this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Steps.Received", "{0:dd.MM.yyyy}")});
         this.xrTableCell6.Name = "xrTableCell6";
         this.xrTableCell6.StylePriority.UseBorders = false;
         this.xrTableCell6.StylePriority.UseTextAlignment = false;
         this.xrTableCell6.Text = "xrTableCell6";
         this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell6.Weight = 0.24767801857585131D;
         //
         // GroupHeader1
         //
         this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3});
         this.GroupHeader1.HeightF = 15F;
         this.GroupHeader1.Name = "GroupHeader1";
         this.GroupHeader1.RepeatEveryPage = true;
         //
         // xrTable3
         //
         this.xrTable3.BackColor = System.Drawing.Color.Gainsboro;
         this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable3.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable3.Name = "xrTable3";
         this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4});
         this.xrTable3.SizeF = new System.Drawing.SizeF(430F, 15F);
         this.xrTable3.StylePriority.UseBackColor = false;
         this.xrTable3.StylePriority.UseBorders = false;
         this.xrTable3.StylePriority.UseFont = false;
         this.xrTable3.StylePriority.UseTextAlignment = false;
         this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow4
         //
         this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell31,
         this.xrTableCell28,
         this.xrTableCell29,
         this.xrTableCell30});
         this.xrTableRow4.Name = "xrTableRow4";
         this.xrTableRow4.Weight = 1D;
         //
         // xrTableCell31
         //
         this.xrTableCell31.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell31.Name = "xrTableCell31";
         this.xrTableCell31.StylePriority.UseBorders = false;
         this.xrTableCell31.Text = "№ п/п";
         this.xrTableCell31.Weight = 0.59999996430703428D;
         //
         // xrTableCell28
         //
         this.xrTableCell28.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell28.Name = "xrTableCell28";
         this.xrTableCell28.StylePriority.UseBorders = false;
         this.xrTableCell28.Text = "Назва етапу";
         this.xrTableCell28.Weight = 2.0999996549191584D;
         //
         // xrTableCell29
         //
         this.xrTableCell29.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell29.Name = "xrTableCell29";
         this.xrTableCell29.StylePriority.UseBorders = false;
         this.xrTableCell29.Text = "Передали";
         this.xrTableCell29.Weight = 0.80000030517577592D;
         //
         // xrTableCell30
         //
         this.xrTableCell30.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell30.Name = "xrTableCell30";
         this.xrTableCell30.StylePriority.UseBorders = false;
         this.xrTableCell30.Text = "Отримали";
         this.xrTableCell30.Weight = 0.80000030517577592D;
         //
         // GroupFooter1
         //
         this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable4});
         this.GroupFooter1.GroupUnion = DevExpress.XtraReports.UI.GroupFooterUnion.WithLastDetail;
         this.GroupFooter1.HeightF = 15F;
         this.GroupFooter1.Name = "GroupFooter1";
         this.GroupFooter1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.GroupFooter1_BeforePrint);
         //
         // xrTable4
         //
         this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable4.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable4.Name = "xrTable4";
         this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow5});
         this.xrTable4.SizeF = new System.Drawing.SizeF(1069F, 15F);
         this.xrTable4.StylePriority.UseBorders = false;
         this.xrTable4.StylePriority.UseFont = false;
         this.xrTable4.StylePriority.UseTextAlignment = false;
         this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow5
         //
         this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell33,
         this.xrTableCell34,
         this.xrTableCell35,
         this.xrTableCell36,
         this.xrTableCell37,
         this.xrTableCell38,
         this.xrTableCell39,
         this.xrTableCell40,
         this.xrTableCell41,
         this.xrTableCell42,
         this.xrTableCell43,
         this.xrTableCell44});
         this.xrTableRow5.Name = "xrTableRow5";
         this.xrTableRow5.Weight = 1D;
         //
         // xrTableCell33
         //
         this.xrTableCell33.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell33.Multiline = true;
         this.xrTableCell33.Name = "xrTableCell33";
         this.xrTableCell33.StylePriority.UseBorders = false;
         this.xrTableCell33.StylePriority.UseTextAlignment = false;
         this.xrTableCell33.Text = "1";
         this.xrTableCell33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         this.xrTableCell33.Weight = 0.16838166867604984D;
         //
         // xrTableCell34
         //
         this.xrTableCell34.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell34.Name = "xrTableCell34";
         this.xrTableCell34.StylePriority.UseBorders = false;
         this.xrTableCell34.Text = "2";
         this.xrTableCell34.Weight = 0.19644527952731267D;
         //
         // xrTableCell35
         //
         this.xrTableCell35.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell35.Name = "xrTableCell35";
         this.xrTableCell35.StylePriority.UseBorders = false;
         this.xrTableCell35.Text = "3";
         this.xrTableCell35.Weight = 0.50514498818578624D;
         //
         // xrTableCell36
         //
         this.xrTableCell36.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTableCell36.Name = "xrTableCell36";
         this.xrTableCell36.StylePriority.UseBorders = false;
         this.xrTableCell36.Text = "4";
         this.xrTableCell36.Weight = 0.336763323078209D;
         //
         // xrTableCell37
         //
         this.xrTableCell37.Name = "xrTableCell37";
         this.xrTableCell37.Text = "5";
         this.xrTableCell37.Weight = 0.42095415563199762D;
         //
         // xrTableCell38
         //
         this.xrTableCell38.Name = "xrTableCell38";
         this.xrTableCell38.Text = "6";
         this.xrTableCell38.Weight = 0.33676332307820905D;
         //
         // xrTableCell39
         //
         this.xrTableCell39.Name = "xrTableCell39";
         this.xrTableCell39.Text = "7";
         this.xrTableCell39.Weight = 0.19644527952731264D;
         //
         // xrTableCell40
         //
         this.xrTableCell40.Font = new System.Drawing.Font("Times New Roman", 8F, System.Drawing.FontStyle.Bold);
         this.xrTableCell40.Multiline = true;
         this.xrTableCell40.Name = "xrTableCell40";
         this.xrTableCell40.StylePriority.UseFont = false;
         this.xrTableCell40.Text = "8";
         this.xrTableCell40.Weight = 0.14031805247207801D;
         //
         // xrTableCell41
         //
         this.xrTableCell41.Multiline = true;
         this.xrTableCell41.Name = "xrTableCell41";
         this.xrTableCell41.Text = "9";
         this.xrTableCell41.Weight = 0.14031805247207793D;
         //
         // xrTableCell42
         //
         this.xrTableCell42.Name = "xrTableCell42";
         this.xrTableCell42.Text = "10";
         this.xrTableCell42.Weight = 0.19644527952731267D;
         //
         // xrTableCell43
         //
         this.xrTableCell43.Multiline = true;
         this.xrTableCell43.Name = "xrTableCell43";
         this.xrTableCell43.Text = "11";
         this.xrTableCell43.Weight = 0.16838166867604984D;
         //
         // xrTableCell44
         //
         this.xrTableCell44.Name = "xrTableCell44";
         this.xrTableCell44.Text = "12";
         this.xrTableCell44.Weight = 0.19363892914760436D;
         //
         // StepReport
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.DetailReport});
         this.DataSource = this.srcActs;
         this.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
         this.Landscape = true;
         this.Margins = new System.Drawing.Printing.Margins(50, 50, 51, 50);
         this.PageHeight = 827;
         this.PageWidth = 1169;
         this.PaperKind = System.Drawing.Printing.PaperKind.A4;
         this.Version = "15.1";
         ((System.ComponentModel.ISupportInitialize)(this.tblActs)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.srcActs)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.tblSteps)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1        = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table1              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1     = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery2        = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column4             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table2              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column5             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression5   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column6             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression6   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column7             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression7   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table3              = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column8             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression8   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column9             = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression9   = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Join                 join1               = new DevExpress.DataAccess.Sql.Join();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery1     = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     System.ComponentModel.ComponentResourceManager resources           = new System.ComponentModel.ComponentResourceManager(typeof(MarketRoutePrint));
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo1   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     DevExpress.DataAccess.Sql.MasterDetailInfo     masterDetailInfo2   = new DevExpress.DataAccess.Sql.MasterDetailInfo();
     DevExpress.DataAccess.Sql.RelationColumnInfo   relationColumnInfo3 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.PoPictureBox   = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel11      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport   = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1        = new DevExpress.XtraReports.UI.DetailBand();
     this.xrPanel2       = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12      = new DevExpress.XtraReports.UI.XRLabel();
     this.DetailReport1  = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2        = new DevExpress.XtraReports.UI.DetailBand();
     this.xrPanel1       = new DevExpress.XtraReports.UI.XRPanel();
     this.xrLabel17      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel16      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel15      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8       = new DevExpress.XtraReports.UI.XRLabel();
     this.paramRouteId   = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "ApplicationContext";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "Id";
     table1.MetaSerializable            = "<Meta X=\"30\" Y=\"30\" Width=\"125\" Height=\"248\" />";
     table1.Name                  = "MarketRoutes";
     columnExpression1.Table      = table1;
     column1.Expression           = columnExpression1;
     columnExpression2.ColumnName = "Name";
     columnExpression2.Table      = table1;
     column2.Expression           = columnExpression2;
     columnExpression3.ColumnName = "Description";
     columnExpression3.Table      = table1;
     column3.Expression           = columnExpression3;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.FilterString = "[MarketRoutes.Id] = ?sqlParamRouteId And ([MarketRoutes.IsDeleted] = False Or [Ma" +
                                 "rketRoutes.IsDeleted] Is Null)";
     selectQuery1.GroupFilterString = "";
     selectQuery1.MetaSerializable  = "<Meta X=\"-70\" Y=\"-30\" Width=\"100\" Height=\"88\" />";
     selectQuery1.Name     = "MarketRoutes";
     queryParameter1.Name  = "sqlParamRouteId";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("?paramRouteId", typeof(int));
     selectQuery1.Parameters.Add(queryParameter1);
     selectQuery1.Tables.Add(table1);
     columnExpression4.ColumnName = "Name";
     table2.MetaSerializable      = "<Meta X=\"185\" Y=\"30\" Width=\"125\" Height=\"248\" />";
     table2.Name                  = "Markets";
     columnExpression4.Table      = table2;
     column4.Expression           = columnExpression4;
     columnExpression5.ColumnName = "Town";
     columnExpression5.Table      = table2;
     column5.Expression           = columnExpression5;
     columnExpression6.ColumnName = "Description";
     columnExpression6.Table      = table2;
     column6.Expression           = columnExpression6;
     columnExpression7.ColumnName = "Id";
     table3.MetaSerializable      = "<Meta X=\"30\" Y=\"30\" Width=\"125\" Height=\"134\" />";
     table3.Name                  = "MarketRouteMaps";
     columnExpression7.Table      = table3;
     column7.Expression           = columnExpression7;
     columnExpression8.ColumnName = "MarketRouteId";
     columnExpression8.Table      = table3;
     column8.Expression           = columnExpression8;
     columnExpression9.ColumnName = "MarketId";
     columnExpression9.Table      = table3;
     column9.Expression           = columnExpression9;
     selectQuery2.Columns.Add(column4);
     selectQuery2.Columns.Add(column5);
     selectQuery2.Columns.Add(column6);
     selectQuery2.Columns.Add(column7);
     selectQuery2.Columns.Add(column8);
     selectQuery2.Columns.Add(column9);
     selectQuery2.MetaSerializable       = "<Meta X=\"100\" Y=\"0\" Width=\"100\" Height=\"139\" />";
     selectQuery2.Name                   = "MarketRouteMaps";
     relationColumnInfo1.NestedKeyColumn = "Id";
     relationColumnInfo1.ParentKeyColumn = "MarketId";
     join1.KeyColumns.Add(relationColumnInfo1);
     join1.Nested = table2;
     join1.Parent = table3;
     selectQuery2.Relations.Add(join1);
     selectQuery2.Tables.Add(table3);
     selectQuery2.Tables.Add(table2);
     customSqlQuery1.MetaSerializable = "<Meta X=\"220\" Y=\"20\" Width=\"127\" Height=\"224\" />";
     customSqlQuery1.Name             = "MarketCustomers";
     customSqlQuery1.Sql = resources.GetString("customSqlQuery1.Sql");
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1,
         selectQuery2,
         customSqlQuery1
     });
     masterDetailInfo1.DetailQueryName   = "MarketRouteMaps";
     relationColumnInfo2.NestedKeyColumn = "MarketRouteId";
     relationColumnInfo2.ParentKeyColumn = "Id";
     masterDetailInfo1.KeyColumns.Add(relationColumnInfo2);
     masterDetailInfo1.MasterQueryName   = "MarketRoutes";
     masterDetailInfo2.DetailQueryName   = "MarketCustomers";
     relationColumnInfo3.NestedKeyColumn = "MarketId";
     relationColumnInfo3.ParentKeyColumn = "MarketId";
     masterDetailInfo2.KeyColumns.Add(relationColumnInfo3);
     masterDetailInfo2.MasterQueryName = "MarketRouteMaps";
     this.sqlDataSource1.Relations.AddRange(new DevExpress.DataAccess.Sql.MasterDetailInfo[] {
         masterDetailInfo1,
         masterDetailInfo2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 18F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.PoPictureBox,
         this.xrLabel11,
         this.xrLabel10,
         this.xrLabel2,
         this.xrLabel1
     });
     this.Detail.HeightF = 67.65254F;
     this.Detail.Name    = "Detail";
     //
     // PoPictureBox
     //
     this.PoPictureBox.ImageAlignment = DevExpress.XtraPrinting.ImageAlignment.TopLeft;
     this.PoPictureBox.LocationFloat  = new DevExpress.Utils.PointFloat(10F, 10.00001F);
     this.PoPictureBox.Name           = "PoPictureBox";
     this.PoPictureBox.SizeF          = new System.Drawing.SizeF(218.3683F, 46F);
     this.PoPictureBox.Sizing         = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // xrLabel11
     //
     this.xrLabel11.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(437.4167F, 33.00001F);
     this.xrLabel11.Multiline                      = true;
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "Description";
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(437.4167F, 10.00001F);
     this.xrLabel10.Multiline                      = true;
     this.xrLabel10.Name                           = "xrLabel10";
     this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text                           = "Route Name";
     this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Description]")
     });
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(537.4167F, 33.00001F);
     this.xrLabel2.Multiline     = true;
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(239.5833F, 23F);
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text          = "xrLabel2";
     this.xrLabel2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Name]")
     });
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(537.4167F, 10.00001F);
     this.xrLabel1.Multiline     = true;
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(239.5833F, 23F);
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text          = "xrLabel1";
     this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.DetailReport1
     });
     this.DetailReport.DataMember = "MarketRoutes.MarketRoutesMarketRouteMaps";
     this.DetailReport.DataSource = this.sqlDataSource1;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel2
     });
     this.Detail1.HeightF = 80.58475F;
     this.Detail1.Name    = "Detail1";
     //
     // xrPanel2
     //
     this.xrPanel2.BackColor = System.Drawing.Color.Gainsboro;
     this.xrPanel2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel3,
         this.xrLabel12
     });
     this.xrPanel2.LocationFloat = new DevExpress.Utils.PointFloat(9.999939F, 6.347497F);
     this.xrPanel2.Name          = "xrPanel2";
     this.xrPanel2.SizeF         = new System.Drawing.SizeF(771.0001F, 66.13979F);
     this.xrPanel2.StylePriority.UseBackColor = false;
     //
     // xrLabel4
     //
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Name]")
     });
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(139.6665F, 10.13981F);
     this.xrLabel4.Multiline     = true;
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(506.9583F, 23F);
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text          = "xrLabel4";
     this.xrLabel4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Town]")
     });
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(139.6665F, 33.1398F);
     this.xrLabel5.Multiline     = true;
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(506.9583F, 23F);
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text          = "xrLabel5";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(10F, 10.13981F);
     this.xrLabel3.Multiline                      = true;
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(129.6665F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "Market:";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel12
     //
     this.xrLabel12.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel12.LocationFloat                  = new DevExpress.Utils.PointFloat(10F, 33.13984F);
     this.xrLabel12.Multiline                      = true;
     this.xrLabel12.Name                           = "xrLabel12";
     this.xrLabel12.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                          = new System.Drawing.SizeF(129.6665F, 23F);
     this.xrLabel12.StylePriority.UseFont          = false;
     this.xrLabel12.StylePriority.UseTextAlignment = false;
     this.xrLabel12.Text                           = "Town";
     this.xrLabel12.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2
     });
     this.DetailReport1.DataMember   = "MarketRoutes.MarketRoutesMarketRouteMaps.MarketRouteMapsMarketCustomers";
     this.DetailReport1.DataSource   = this.sqlDataSource1;
     this.DetailReport1.FilterString = "[IsDeleted] <> True";
     this.DetailReport1.Level        = 0;
     this.DetailReport1.Name         = "DetailReport1";
     //
     // Detail2
     //
     this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPanel1
     });
     this.Detail2.HeightF = 144.3884F;
     this.Detail2.MultiColumn.ColumnCount = 3;
     this.Detail2.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail2.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
     this.Detail2.Name = "Detail2";
     //
     // xrPanel1
     //
     this.xrPanel1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.xrPanel1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel17,
         this.xrLabel18,
         this.xrLabel16,
         this.xrLabel15,
         this.xrLabel14,
         this.xrLabel13,
         this.xrLabel9,
         this.xrLabel6,
         this.xrLabel7,
         this.xrLabel8
     });
     this.xrPanel1.LocationFloat = new DevExpress.Utils.PointFloat(9.999974F, 0F);
     this.xrPanel1.Name          = "xrPanel1";
     this.xrPanel1.SizeF         = new System.Drawing.SizeF(246.3335F, 134.3884F);
     this.xrPanel1.StylePriority.UseBackColor = false;
     //
     // xrLabel17
     //
     this.xrLabel17.CanGrow                        = false;
     this.xrLabel17.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(9.791714F, 79.41665F);
     this.xrLabel17.Multiline                      = true;
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(75F, 23F);
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "Post Code";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel18
     //
     this.xrLabel18.CanGrow = false;
     this.xrLabel18.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PostCode]")
     });
     this.xrLabel18.LocationFloat = new DevExpress.Utils.PointFloat(84.79171F, 79.41665F);
     this.xrLabel18.Multiline     = true;
     this.xrLabel18.Name          = "xrLabel18";
     this.xrLabel18.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF         = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text          = "xrLabel6";
     this.xrLabel18.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel16
     //
     this.xrLabel16.CanGrow                        = false;
     this.xrLabel16.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel16.LocationFloat                  = new DevExpress.Utils.PointFloat(9.791692F, 10.41665F);
     this.xrLabel16.Multiline                      = true;
     this.xrLabel16.Name                           = "xrLabel16";
     this.xrLabel16.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                          = new System.Drawing.SizeF(75F, 23F);
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.Text                           = "No.";
     this.xrLabel16.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel15
     //
     this.xrLabel15.CanGrow                        = false;
     this.xrLabel15.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(9.791714F, 102.4166F);
     this.xrLabel15.Multiline                      = true;
     this.xrLabel15.Name                           = "xrLabel15";
     this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF                          = new System.Drawing.SizeF(75F, 23F);
     this.xrLabel15.StylePriority.UseFont          = false;
     this.xrLabel15.StylePriority.UseTextAlignment = false;
     this.xrLabel15.Text                           = "Phone";
     this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel14
     //
     this.xrLabel14.CanGrow                        = false;
     this.xrLabel14.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(9.791692F, 56.4167F);
     this.xrLabel14.Multiline                      = true;
     this.xrLabel14.Name                           = "xrLabel14";
     this.xrLabel14.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                          = new System.Drawing.SizeF(75F, 23F);
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "Address";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel13
     //
     this.xrLabel13.CanGrow                        = false;
     this.xrLabel13.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(9.791692F, 33.41668F);
     this.xrLabel13.Multiline                      = true;
     this.xrLabel13.Name                           = "xrLabel13";
     this.xrLabel13.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                          = new System.Drawing.SizeF(75F, 23F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text                           = "Acc Name";
     this.xrLabel13.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.CanGrow = false;
     this.xrLabel9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[SortOrder]")
     });
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(84.79171F, 10.41665F);
     this.xrLabel9.Multiline     = true;
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text          = "xrLabel9";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.CanGrow = false;
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Telephone]")
     });
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(84.79171F, 102.4166F);
     this.xrLabel6.Multiline     = true;
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text          = "xrLabel6";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel7
     //
     this.xrLabel7.CanGrow = false;
     this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[AddressLine1]")
     });
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(84.79171F, 56.4167F);
     this.xrLabel7.Multiline     = true;
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text          = "xrLabel7";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel8
     //
     this.xrLabel8.CanGrow = false;
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[CompanyName]")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(84.79171F, 33.41668F);
     this.xrLabel8.Multiline     = true;
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(157.2917F, 23F);
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text          = "xrLabel8";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // paramRouteId
     //
     this.paramRouteId.Description = "Parameter1";
     this.paramRouteId.Name        = "paramRouteId";
     this.paramRouteId.Type        = typeof(int);
     this.paramRouteId.ValueInfo   = "0";
     //
     // MarketRoutePrint
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.DetailReport
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "MarketRoutes";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Margins    = new System.Drawing.Printing.Margins(21, 42, 18, 100);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.paramRouteId
     });
     this.Version = "19.1";
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Detail              = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrCellIndex         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellEmployeeCode  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellFullName      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellPosition      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellDegree        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellDepartment    = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellWorkingDate   = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin           = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin        = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader          = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable1            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7        = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.lblDuration         = new DevExpress.XtraReports.UI.XRLabel();
     this.lblReportTitle      = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportFooter        = new DevExpress.XtraReports.UI.ReportFooterBand();
     this.lblReportDate       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable4            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow4         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrCellTotal         = new DevExpress.XtraReports.UI.XRTableCell();
     this.lblCreatedByName    = new DevExpress.XtraReports.UI.XRLabel();
     this.lblSignedByName     = new DevExpress.XtraReports.UI.XRLabel();
     this.lblSignedByTitle    = new DevExpress.XtraReports.UI.XRLabel();
     this.lblCreatedByTitle   = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader1        = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable3            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrt_GroupDepartment = new DevExpress.XtraReports.UI.XRTableCell();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF       = 25F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable2
     //
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(1146F, 25F);
     this.xrTable2.StylePriority.UseBorders       = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrCellIndex,
         this.xrCellEmployeeCode,
         this.xrCellFullName,
         this.xrCellPosition,
         this.xrCellDegree,
         this.xrCellDepartment,
         this.xrCellWorkingDate
     });
     this.xrTableRow2.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableRow2.Name    = "xrTableRow2";
     this.xrTableRow2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
     this.xrTableRow2.StylePriority.UseFont          = false;
     this.xrTableRow2.StylePriority.UsePadding       = false;
     this.xrTableRow2.StylePriority.UseTextAlignment = false;
     this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableRow2.Weight        = 1D;
     //
     // xrCellIndex
     //
     this.xrCellIndex.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellIndex.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellIndex.Name    = "xrCellIndex";
     this.xrCellIndex.StylePriority.UseBorders       = false;
     this.xrCellIndex.StylePriority.UseFont          = false;
     this.xrCellIndex.StylePriority.UseTextAlignment = false;
     this.xrCellIndex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellIndex.Weight        = 0.268262941949132D;
     this.xrCellIndex.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // xrCellEmployeeCode
     //
     this.xrCellEmployeeCode.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellEmployeeCode.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellEmployeeCode.Name    = "xrCellEmployeeCode";
     this.xrCellEmployeeCode.StylePriority.UseBorders       = false;
     this.xrCellEmployeeCode.StylePriority.UseFont          = false;
     this.xrCellEmployeeCode.StylePriority.UseTextAlignment = false;
     this.xrCellEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellEmployeeCode.Weight        = 0.67429267158347683D;
     //
     // xrCellFullName
     //
     this.xrCellFullName.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellFullName.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellFullName.Name    = "xrCellFullName";
     this.xrCellFullName.Padding = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
     this.xrCellFullName.StylePriority.UseBorders       = false;
     this.xrCellFullName.StylePriority.UseFont          = false;
     this.xrCellFullName.StylePriority.UsePadding       = false;
     this.xrCellFullName.StylePriority.UseTextAlignment = false;
     this.xrCellFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrCellFullName.Weight        = 2.1628083821800814D;
     //
     // xrCellPosition
     //
     this.xrCellPosition.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellPosition.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellPosition.Name    = "xrCellPosition";
     this.xrCellPosition.StylePriority.UseBorders       = false;
     this.xrCellPosition.StylePriority.UseFont          = false;
     this.xrCellPosition.StylePriority.UseTextAlignment = false;
     this.xrCellPosition.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellPosition.Weight        = 0.87562616519637793D;
     //
     // xrCellDegree
     //
     this.xrCellDegree.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellDegree.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellDegree.Name    = "xrCellDegree";
     this.xrCellDegree.StylePriority.UseBorders       = false;
     this.xrCellDegree.StylePriority.UseFont          = false;
     this.xrCellDegree.StylePriority.UseTextAlignment = false;
     this.xrCellDegree.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellDegree.Weight        = 1.0178229846187759D;
     //
     // xrCellDepartment
     //
     this.xrCellDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellDepartment.Name    = "xrCellDepartment";
     this.xrCellDepartment.StylePriority.UseBorders       = false;
     this.xrCellDepartment.StylePriority.UseFont          = false;
     this.xrCellDepartment.StylePriority.UseTextAlignment = false;
     this.xrCellDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellDepartment.Weight        = 1.2746900037231876D;
     //
     // xrCellWorkingDate
     //
     this.xrCellWorkingDate.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                             | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellWorkingDate.Font = new System.Drawing.Font("Times New Roman", 10F);
     this.xrCellWorkingDate.Name = "xrCellWorkingDate";
     this.xrCellWorkingDate.StylePriority.UseBorders       = false;
     this.xrCellWorkingDate.StylePriority.UseFont          = false;
     this.xrCellWorkingDate.StylePriority.UseTextAlignment = false;
     this.xrCellWorkingDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellWorkingDate.Weight        = 0.95248716773585906D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 46F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 61F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.PageHeader.HeightF = 50F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrTable1
     //
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                     | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(1146F, 50F);
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell4,
         this.xrTableCell3,
         this.xrTableCell5,
         this.xrTableCell8,
         this.xrTableCell7
     });
     this.xrTableRow1.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableRow1.Name    = "xrTableRow1";
     this.xrTableRow1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
     this.xrTableRow1.StylePriority.UseFont          = false;
     this.xrTableRow1.StylePriority.UsePadding       = false;
     this.xrTableRow1.StylePriority.UseTextAlignment = false;
     this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableRow1.Weight        = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "STT";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 0.35416664177527146D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseBorders       = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Mã NV";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight        = 0.8902159984184429D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell4.Multiline = true;
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseBorders       = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "HỌ VÀ TÊN\r\n";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell4.Weight        = 2.8553872655828618D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseBorders       = false;
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "CHỨC VỤ";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell3.Weight        = 1.1560209593063879D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseBorders       = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "BẰNG CẤP";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell5.Weight        = 1.3437522660614978D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseBorders       = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text          = "PHÒNG BAN LÀM VIỆC";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell8.Weight        = 1.6828737562656544D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                         | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseBorders       = false;
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "NGÀY VÀO LÀM VIỆC";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight        = 1.257494441622605D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblDuration,
         this.lblReportTitle
     });
     this.ReportHeader.HeightF = 95.08333F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // lblDuration
     //
     this.lblDuration.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblDuration.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 51.12502F);
     this.lblDuration.Name                           = "lblDuration";
     this.lblDuration.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblDuration.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
     this.lblDuration.StylePriority.UseFont          = false;
     this.lblDuration.StylePriority.UseTextAlignment = false;
     this.lblDuration.Text                           = "Từ ngày: {0} đến ngày: {1}";
     this.lblDuration.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblReportTitle
     //
     this.lblReportTitle.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblReportTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 28.12503F);
     this.lblReportTitle.Name                           = "lblReportTitle";
     this.lblReportTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportTitle.SizeF                          = new System.Drawing.SizeF(1146F, 23F);
     this.lblReportTitle.StylePriority.UseFont          = false;
     this.lblReportTitle.StylePriority.UseTextAlignment = false;
     this.lblReportTitle.Text                           = "DANH SÁCH NHÂN SỰ TĂNG";
     this.lblReportTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // ReportFooter
     //
     this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lblReportDate,
         this.xrTable4,
         this.lblCreatedByName,
         this.lblSignedByName,
         this.lblSignedByTitle,
         this.lblCreatedByTitle
     });
     this.ReportFooter.HeightF = 226F;
     this.ReportFooter.Name    = "ReportFooter";
     //
     // lblReportDate
     //
     this.lblReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(576.058F, 63.54169F);
     this.lblReportDate.Name                           = "lblReportDate";
     this.lblReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblReportDate.SizeF                          = new System.Drawing.SizeF(569.9421F, 23F);
     this.lblReportDate.StylePriority.UseFont          = false;
     this.lblReportDate.StylePriority.UseTextAlignment = false;
     this.lblReportDate.Text                           = "Ngày {0}, tháng {1}, năm {2}";
     this.lblReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTable4
     //
     this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                    | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable4.Name          = "xrTable4";
     this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4
     });
     this.xrTable4.SizeF = new System.Drawing.SizeF(1146F, 25F);
     this.xrTable4.StylePriority.UseBorders       = false;
     this.xrTable4.StylePriority.UseTextAlignment = false;
     this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrCellTotal
     });
     this.xrTableRow4.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableRow4.Name    = "xrTableRow4";
     this.xrTableRow4.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 3, 0, 100F);
     this.xrTableRow4.StylePriority.UseFont          = false;
     this.xrTableRow4.StylePriority.UsePadding       = false;
     this.xrTableRow4.StylePriority.UseTextAlignment = false;
     this.xrTableRow4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableRow4.Weight        = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell6.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell6.Name    = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseBorders       = false;
     this.xrTableCell6.StylePriority.UseFont          = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text          = "TỔNG SỐ";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell6.Weight        = 0.12294664449067186D;
     //
     // xrCellTotal
     //
     this.xrCellTotal.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrCellTotal.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrCellTotal.Name = "xrCellTotal";
     this.xrCellTotal.StylePriority.UseBorders       = false;
     this.xrCellTotal.StylePriority.UseFont          = false;
     this.xrCellTotal.StylePriority.UseTextAlignment = false;
     this.xrCellTotal.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrCellTotal.Weight        = 0.819608969041937D;
     //
     // lblCreatedByName
     //
     this.lblCreatedByName.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblCreatedByName.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 176.0417F);
     this.lblCreatedByName.Name                           = "lblCreatedByName";
     this.lblCreatedByName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblCreatedByName.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
     this.lblCreatedByName.StylePriority.UseFont          = false;
     this.lblCreatedByName.StylePriority.UseTextAlignment = false;
     this.lblCreatedByName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblSignedByName
     //
     this.lblSignedByName.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.lblSignedByName.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0578F, 176.0417F);
     this.lblSignedByName.Name                           = "lblSignedByName";
     this.lblSignedByName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblSignedByName.SizeF                          = new System.Drawing.SizeF(569.9421F, 23F);
     this.lblSignedByName.StylePriority.UseFont          = false;
     this.lblSignedByName.StylePriority.UseTextAlignment = false;
     this.lblSignedByName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // lblSignedByTitle
     //
     this.lblSignedByTitle.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblSignedByTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(576.0578F, 86.54169F);
     this.lblSignedByTitle.Multiline                      = true;
     this.lblSignedByTitle.Name                           = "lblSignedByTitle";
     this.lblSignedByTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblSignedByTitle.SizeF                          = new System.Drawing.SizeF(569.9422F, 23.00001F);
     this.lblSignedByTitle.StylePriority.UseFont          = false;
     this.lblSignedByTitle.StylePriority.UseTextAlignment = false;
     this.lblSignedByTitle.Text                           = "NGƯỜI LẬP\r\n";
     this.lblSignedByTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // lblCreatedByTitle
     //
     this.lblCreatedByTitle.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
     this.lblCreatedByTitle.LocationFloat                  = new DevExpress.Utils.PointFloat(2.384186E-05F, 86.54169F);
     this.lblCreatedByTitle.Name                           = "lblCreatedByTitle";
     this.lblCreatedByTitle.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblCreatedByTitle.SizeF                          = new System.Drawing.SizeF(576.0578F, 23F);
     this.lblCreatedByTitle.StylePriority.UseFont          = false;
     this.lblCreatedByTitle.StylePriority.UseTextAlignment = false;
     this.lblCreatedByTitle.Text                           = "PHÒNG NHÂN SỰ";
     this.lblCreatedByTitle.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3
     });
     this.GroupHeader1.HeightF = 25F;
     this.GroupHeader1.Name    = "GroupHeader1";
     //
     // xrTable3
     //
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable3.Name          = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable3.SizeF = new System.Drawing.SizeF(1146F, 25F);
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrt_GroupDepartment
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrt_GroupDepartment
     //
     this.xrt_GroupDepartment.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                               | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrt_GroupDepartment.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrt_GroupDepartment.Name    = "xrt_GroupDepartment";
     this.xrt_GroupDepartment.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 3, 3, 3, 100F);
     this.xrt_GroupDepartment.StylePriority.UseBorders       = false;
     this.xrt_GroupDepartment.StylePriority.UseFont          = false;
     this.xrt_GroupDepartment.StylePriority.UsePadding       = false;
     this.xrt_GroupDepartment.StylePriority.UseTextAlignment = false;
     this.xrt_GroupDepartment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrt_GroupDepartment.Weight        = 2D;
     this.xrt_GroupDepartment.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Group_BeforePrint);
     //
     // rpHRM_EmployeeIncrease
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.ReportHeader,
         this.ReportFooter,
         this.GroupHeader1
     });
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(11, 12, 46, 61);
     this.PageHeight = 827;
     this.PageWidth  = 1169;
     this.PaperKind  = System.Drawing.Printing.PaperKind.A4;
     this.Version    = "15.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 32
0
        public void ShowReport()
        {
            #region "create_band"
            TopMarginBand    TopMargin    = new TopMarginBand();
            BottomMarginBand BottomMargin = new BottomMarginBand();
            DetailBand       Detail       = new DetailBand();       // noi dung lap lai
            ReportHeaderBand ReportHeader = new ReportHeaderBand(); // khong lap lai lam ten report
            PageHeaderBand   PageHeader   = new PageHeaderBand();   // lap lai tieu de
            ReportFooterBand ReportFooter = new ReportFooterBand(); // khong lap lai de lay chu ky
            #endregion

            #region "TopMargin"
            TopMargin.HeightF       = 100F;
            TopMargin.Name          = "TopMargin";
            TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            #endregion

            #region "ReportHeader"
            XRLabel xrLbl_BOT    = new XRLabel();
            XRLabel xrLblCongHoa = new XRLabel();
            XRLabel xrLblDocLap  = new XRLabel();
            XRLabel xrLblMau     = new XRLabel();
            XRLabel xrLblBaoCao  = new XRLabel();

            ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                xrLbl_BOT,
                xrLblCongHoa,
                xrLblDocLap,
                xrLblMau,
                xrLblBaoCao
            });
            ReportHeader.HeightF = 185.9375F;
            ReportHeader.Name    = "ReportHeader";

            //
            // xrLbl_BOT
            //
            xrLbl_BOT.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            xrLbl_BOT.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
            xrLbl_BOT.Multiline                      = true;
            xrLbl_BOT.Name                           = "xrLbl_BOT";
            xrLbl_BOT.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            xrLbl_BOT.SizeF                          = new System.Drawing.SizeF(227.6882F, 47.19355F);
            xrLbl_BOT.StylePriority.UseFont          = false;
            xrLbl_BOT.StylePriority.UseTextAlignment = false;
            xrLbl_BOT.Text                           = "TRẠM THU PHÍ BOT \r\nCẦU BẠCH ĐĂNG";
            xrLbl_BOT.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrLblCongHoa
            //
            xrLblCongHoa.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            xrLblCongHoa.LocationFloat                  = new DevExpress.Utils.PointFloat(401.8818F, 0F);
            xrLblCongHoa.Multiline                      = true;
            xrLblCongHoa.Name                           = "xrLblCongHoa";
            xrLblCongHoa.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            xrLblCongHoa.SizeF                          = new System.Drawing.SizeF(567.1182F, 32.4086F);
            xrLblCongHoa.StylePriority.UseFont          = false;
            xrLblCongHoa.StylePriority.UseTextAlignment = false;
            xrLblCongHoa.Text                           = "CỘNG HÒA XÃ HỘI CHỦ NGHĨA VIỆT NAM ";
            xrLblCongHoa.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrLblDocLap
            //
            xrLblDocLap.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            xrLblDocLap.LocationFloat                  = new DevExpress.Utils.PointFloat(401.8818F, 32.4086F);
            xrLblDocLap.Multiline                      = true;
            xrLblDocLap.Name                           = "xrLblDocLap";
            xrLblDocLap.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            xrLblDocLap.SizeF                          = new System.Drawing.SizeF(567.1182F, 32.4086F);
            xrLblDocLap.StylePriority.UseFont          = false;
            xrLblDocLap.StylePriority.UseTextAlignment = false;
            xrLblDocLap.Text                           = "Độc lâp - Tự do - Hạnh phúc ";
            xrLblDocLap.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrLblMau
            //
            xrLblMau.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            xrLblMau.LocationFloat                  = new DevExpress.Utils.PointFloat(401.8818F, 78.10752F);
            xrLblMau.Multiline                      = true;
            xrLblMau.Name                           = "xrLblMau";
            xrLblMau.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            xrLblMau.SizeF                          = new System.Drawing.SizeF(567.1182F, 32.4086F);
            xrLblMau.StylePriority.UseFont          = false;
            xrLblMau.StylePriority.UseTextAlignment = false;
            xrLblMau.Text                           = "Mẫu: PN KT-001\r\n";
            xrLblMau.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
            //
            // xrLblBaoCao
            //
            xrLblBaoCao.Font                           = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            xrLblBaoCao.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 123.6559F);
            xrLblBaoCao.Multiline                      = true;
            xrLblBaoCao.Name                           = "xrLblBaoCao";
            xrLblBaoCao.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            xrLblBaoCao.SizeF                          = new System.Drawing.SizeF(968.9999F, 40.47312F);
            xrLblBaoCao.StylePriority.UseFont          = false;
            xrLblBaoCao.StylePriority.UseTextAlignment = false;
            xrLblBaoCao.Text                           = "BÁO CÁO NHẬP KHO VÉ\r\n";
            xrLblBaoCao.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;

            #endregion

            #region "PageHeader"
            XRTable     xrTable_Title         = new XRTable();
            XRTableRow  xrTableRow1           = new XRTableRow();
            XRTableCell xrTableCell_STT       = new XRTableCell();
            XRTableCell xrTableCell_LoaiVe    = new XRTableCell();
            XRTableCell xrTableCell_DonGia    = new XRTableCell();
            XRTableCell xrTableCell_SoLuong   = new XRTableCell();
            XRTableCell xrTableCell_SoSerie   = new XRTableCell();
            XRTableCell xrTableCell_ThanhTien = new XRTableCell();

            PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                xrTable_Title
            });
            PageHeader.HeightF = 35.7527F;
            PageHeader.Name    = "PageHeader";

            xrTable_Title.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
            xrTable_Title.Font          = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            xrTable_Title.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            xrTable_Title.Name          = "xrTable_Title";
            xrTable_Title.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                xrTableRow1
            });
            xrTable_Title.SizeF = new System.Drawing.SizeF(968.9999F, 35.7527F);
            xrTable_Title.StylePriority.UseBorders       = false;
            xrTable_Title.StylePriority.UseFont          = false;
            xrTable_Title.StylePriority.UseTextAlignment = false;
            xrTable_Title.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrTableRow1
            //
            xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                xrTableCell_STT,
                xrTableCell_LoaiVe,
                xrTableCell_DonGia,
                xrTableCell_SoLuong,
                xrTableCell_SoSerie,
                xrTableCell_ThanhTien
            });
            xrTableRow1.Name   = "xrTableRow1";
            xrTableRow1.Weight = 1D;
            //
            // xrTableCell_STT
            //
            xrTableCell_STT.Name   = "xrTableCell_STT";
            xrTableCell_STT.Text   = "STT";
            xrTableCell_STT.Weight = 0.55645156860351563D;
            //
            // xrTableCell_LoaiVe
            //
            xrTableCell_LoaiVe.Name   = "xrTableCell_LoaiVe";
            xrTableCell_LoaiVe.Text   = "Loại vé";
            xrTableCell_LoaiVe.Weight = 3.2123664541018107D;
            //
            // xrTableCell_DonGia
            //
            xrTableCell_DonGia.Name   = "xrTableCell_DonGia";
            xrTableCell_DonGia.Text   = "Đơn giá";
            xrTableCell_DonGia.Weight = 0.95161227514623636D;
            //
            // xrTableCell_SoLuong
            //
            xrTableCell_SoLuong.Name   = "xrTableCell_SoLuong";
            xrTableCell_SoLuong.Text   = "Số lượng";
            xrTableCell_SoLuong.Weight = 0.63216863614925811D;
            //
            // xrTableCell_SoSerie
            //
            xrTableCell_SoSerie.Name   = "xrTableCell_SoSerie";
            xrTableCell_SoSerie.Text   = "Số serie nhập";
            xrTableCell_SoSerie.Weight = 3.0255367900463437D;
            //
            // xrTableCell_ThanhTien
            //
            xrTableCell_ThanhTien.Name   = "xrTableCell_ThanhTien";
            xrTableCell_ThanhTien.Text   = "Thành tiền";
            xrTableCell_ThanhTien.Weight = 1.3118642759528358D;

            #endregion

            #region "Detail"

            List <RptTicketStoreModel> lst = new List <RptTicketStoreModel>();
            #region "Create_Data"
            // L1
            lst.Add(new RptTicketStoreModel()
            {
                STT          = 1,
                LOAIVE       = "Vé lượt < 12 chỗ ngồi",
                DONGIA       = 35000,
                SOLUONGTONG  = 30,
                SOLUONGSERIE = 10,
                SOSERIE      = "VL/18P02110000001=>VL/18P02110000010;",
                TTIEN        = 1050000
            });
            lst.Add(new RptTicketStoreModel()
            {
                STT          = -1,
                LOAIVE       = "",
                DONGIA       = -1,
                SOLUONGTONG  = -1,
                SOLUONGSERIE = 15,
                SOSERIE      = "VL/18P021100000011=>VL/18P02110000025;",
                TTIEN        = -1
            });
            lst.Add(new RptTicketStoreModel()
            {
                STT          = -1,
                LOAIVE       = "",
                DONGIA       = -1,
                SOLUONGTONG  = -1,
                SOLUONGSERIE = 5,
                SOSERIE      = "VL/18P021100000026=>VL/18P02110000030;",
                TTIEN        = -1
            });
            // L2
            lst.Add(new RptTicketStoreModel()
            {
                STT          = 2,
                LOAIVE       = "Vé lượt xe từ 12 ghế đến 30 ghế",
                DONGIA       = 50000,
                SOLUONGTONG  = 10,
                SOLUONGSERIE = 3,
                SOSERIE      = "VL/18P02120000001=>VL/18P0212000003;",
                TTIEN        = 150000
            });
            lst.Add(new RptTicketStoreModel()
            {
                STT          = -1,
                LOAIVE       = "",
                DONGIA       = -1,
                SOLUONGTONG  = -1,
                SOLUONGSERIE = 4,
                SOSERIE      = "VL/18P02120000004=>VL/18P0212000007;",
                TTIEN        = -1
            });
            lst.Add(new RptTicketStoreModel()
            {
                STT          = -1,
                LOAIVE       = "",
                DONGIA       = -1,
                SOLUONGTONG  = -1,
                SOLUONGSERIE = 3,
                SOSERIE      = "VL/18P02120000008=>VL/18P02120000010;",
                TTIEN        = -1
            });

            // L3
            lst.Add(new RptTicketStoreModel()
            {
                STT          = 3,
                LOAIVE       = "Vé lượt xe từ 31 ghế trở lên",
                DONGIA       = 60000,
                SOLUONGTONG  = 5,
                SOLUONGSERIE = 5,
                SOSERIE      = "VL/18P02130000001=>VL/18P0213000005;",
                TTIEN        = 300000
            });
            #endregion

            XRTable    xrTable_Detail = new XRTable();
            XRTableRow xrTableRow2;

            XRTableCell xrTableCell_STT_;
            XRTableCell xrTableCell_LoaiVe_;
            XRTableCell xrTableCell_DonGia_;
            XRTableCell xrTableCell_SoLuong_;
            XRTableCell xrTableCell_SoLuongSerie;
            XRTableCell xrTableCell_Serie_;
            XRTableCell xrTableCell_ThanhTien_;


            int     tmpSL = 0;
            decimal tmpTT = 0;

            foreach (RptTicketStoreModel item in _lstRptTicketStoreModel)
            {
                xrTableRow2              = new XRTableRow();
                xrTableCell_STT_         = new XRTableCell();
                xrTableCell_LoaiVe_      = new XRTableCell();
                xrTableCell_DonGia_      = new XRTableCell();
                xrTableCell_SoLuong_     = new XRTableCell();
                xrTableCell_SoLuongSerie = new XRTableCell();
                xrTableCell_Serie_       = new XRTableCell();
                xrTableCell_ThanhTien_   = new XRTableCell();

                #region "format_cell"
                //
                // xrTableCell_STT_
                //
                xrTableCell_STT_.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
                xrTableCell_STT_.Name    = "xrTableCell_STT_";
                //xrTableCell_STT_.Text = "STT";
                xrTableCell_STT_.Weight = 0.55645156860351563D;
                //
                // xrTableCell_LoaiVe_
                //
                xrTableCell_LoaiVe_.Name          = "xrTableCell_LoaiVe_";
                xrTableCell_LoaiVe_.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
                xrTableCell_LoaiVe_.Weight        = 3.2123664541018107D;
                xrTableCell_LoaiVe_.Borders       = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
                //
                // xrTableCell_DonGia_
                //
                xrTableCell_DonGia_.Name    = "xrTableCell_DonGia_";
                xrTableCell_DonGia_.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
                xrTableCell_DonGia_.Weight  = 0.95161227514623636D;
                //
                // xrTableCell_SoLuong_
                //
                xrTableCell_SoLuong_.Name    = "xrTableCell_SoLuong_";
                xrTableCell_SoLuong_.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
                xrTableCell_SoLuong_.Weight  = 0.63216863614925807D;
                //
                // xrTableCell_Serie_
                //
                xrTableCell_Serie_.Name    = "xrTableCell_Serie_";
                xrTableCell_Serie_.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
                xrTableCell_Serie_.Weight  = 2.393366452796194D;
                //
                // xrTableCell_ThanhTien_
                //
                xrTableCell_ThanhTien_.Name    = "xrTableCell_ThanhTien_";
                xrTableCell_ThanhTien_.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
                xrTableCell_ThanhTien_.Weight  = 1.3118641235159838D;
                //
                // xrTableCell_SoLuongSerie
                //
                xrTableCell_SoLuongSerie.Name    = "xrTableCell_SoLuongSerie";
                xrTableCell_SoLuongSerie.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
                xrTableCell_SoLuongSerie.Weight  = 0.63216863614925811D;


                #endregion

                #region "Binding_data_to_cell"
                xrTableCell_STT_.Text         = "" + item.STT;
                xrTableCell_LoaiVe_.Text      = "  " + item.LOAIVE;
                xrTableCell_DonGia_.Text      = string.Format("{0:0,0}", item.DONGIA);
                xrTableCell_SoLuong_.Text     = "" + item.SOLUONGTONG;
                xrTableCell_SoLuongSerie.Text = "" + item.SOLUONGSERIE;
                xrTableCell_Serie_.Text       = item.SOSERIE;
                xrTableCell_ThanhTien_.Text   = string.Format("{0:0,0}", item.TTIEN);

                if (item.STT != -1)
                {
                    tmpSL += item.SOLUONGTONG;
                    tmpTT += item.TTIEN;
                }

                if (item.STT == -1)
                {
                    xrTableCell_STT_.Text         = "";
                    xrTableCell_LoaiVe_.Text      = "";
                    xrTableCell_DonGia_.Text      = "";
                    xrTableCell_SoLuong_.Text     = "";
                    xrTableCell_SoLuongSerie.Text = "" + item.SOLUONGSERIE;
                    xrTableCell_Serie_.Text       = item.SOSERIE;
                    xrTableCell_ThanhTien_.Text   = "";

                    xrTableCell_STT_.Borders       = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
                    xrTableCell_LoaiVe_.Borders    = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
                    xrTableCell_DonGia_.Borders    = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
                    xrTableCell_SoLuong_.Borders   = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
                    xrTableCell_ThanhTien_.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
                }

                if (item.STT > 1)
                {
                    xrTableCell_STT_.Borders         = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
                    xrTableCell_LoaiVe_.Borders      = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
                    xrTableCell_DonGia_.Borders      = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
                    xrTableCell_SoLuong_.Borders     = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
                    xrTableCell_SoLuongSerie.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
                    xrTableCell_Serie_.Borders       = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
                    xrTableCell_ThanhTien_.Borders   = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
                }


                #endregion

                #region "Add_Cell_To_xrTableRows"
                //
                // xrTableRow2
                //
                xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                    xrTableCell_STT_,
                    xrTableCell_LoaiVe_,
                    xrTableCell_DonGia_,
                    xrTableCell_SoLuong_,
                    xrTableCell_SoLuongSerie,
                    xrTableCell_Serie_,
                    xrTableCell_ThanhTien_
                });
                xrTableRow2.Name   = "xrTableRow2";
                xrTableRow2.Weight = 1D;

                #endregion

                #region "Add_Row_To_xrTable"
                //
                // xrTable_Detail.
                //
                //xrTable_Detail.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                //| DevExpress.XtraPrinting.BorderSide.Bottom)));
                xrTable_Detail.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
                xrTable_Detail.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
                xrTable_Detail.LocationFloat                  = new DevExpress.Utils.PointFloat(0.0001390775F, 0F);
                xrTable_Detail.Name                           = "xrTable_Detail";
                xrTable_Detail.SizeF                          = new System.Drawing.SizeF(968.9997F, 35.7527F);
                xrTable_Detail.StylePriority.UseBorders       = false;
                xrTable_Detail.StylePriority.UseFont          = false;
                xrTable_Detail.StylePriority.UseTextAlignment = false;
                xrTable_Detail.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
                xrTable_Detail.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                    xrTableRow2
                });
                #endregion
            }

            // add table to Band_Detail
            Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                xrTable_Detail
            });
            Detail.HeightF       = 35.7527F;
            Detail.Name          = "Detail";
            Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;

            #endregion

            #region "ReportFooter"
            XRTable     xrTable_footer         = new XRTable();
            XRTableRow  xrTableRow3            = new XRTableRow();
            XRTableCell xrTableCell_Tong       = new XRTableCell();
            XRTableCell xrTableCell_SoLuongSum = new XRTableCell();
            XRTableCell xrTableCell_TTSum      = new XRTableCell();
            //
            // xrTable_footer
            //
            xrTable_footer.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom | DevExpress.XtraPrinting.BorderSide.Top)));
            xrTable_footer.Font          = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            xrTable_footer.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            xrTable_footer.Name          = "xrTable_footer";
            xrTable_footer.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                xrTableRow3
            });
            xrTable_footer.SizeF = new System.Drawing.SizeF(968.9995F, 35.7527F);
            xrTable_footer.StylePriority.UseBorders       = false;
            xrTable_footer.StylePriority.UseFont          = false;
            xrTable_footer.StylePriority.UseTextAlignment = false;
            xrTable_footer.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrTableRow3
            //
            xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                xrTableCell_Tong,
                xrTableCell_SoLuongSum,
                xrTableCell_TTSum
            });
            xrTableRow3.Name   = "xrTableRow3";
            xrTableRow3.Weight = 1D;
            //
            // xrTableCell_Tong
            //
            //xrTableCell_Tong.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Top)
            //| DevExpress.XtraPrinting.BorderSide.Bottom)));
            xrTableCell_Tong.Name = "xrTableCell_Tong";
            xrTableCell_Tong.StylePriority.UseBorders = false;
            xrTableCell_Tong.Text   = "TỔNG";
            xrTableCell_Tong.Weight = 4.7204276039877069D;
            //
            // xrTableCell_SoLuongSum
            //
            //xrTableCell_SoLuongSum.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Top)
            //| DevExpress.XtraPrinting.BorderSide.Bottom)));
            xrTableCell_SoLuongSum.Name = "xrTableCell_SoLuongSum";
            xrTableCell_SoLuongSum.StylePriority.UseBorders = false;
            xrTableCell_SoLuongSum.Text   = "" + tmpSL;// "000";
            xrTableCell_SoLuongSum.Weight = 0.6321689989974304D;
            //
            // xrTableCell_TTSum
            //
            xrTableCell_TTSum.Name = "xrTableCell_TTSum";
            xrTableCell_TTSum.StylePriority.UseTextAlignment = false;
            xrTableCell_TTSum.Text          = string.Format("{0:0,0}", tmpTT);//"000.000.000.000  ";
            xrTableCell_TTSum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
            xrTableCell_TTSum.Weight        = 4.3373998019691911D;
            //
            // xrLbl_NguoiLap
            //
            XRLabel xrLbl_NguoiLap = new XRLabel();
            xrLbl_NguoiLap.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            xrLbl_NguoiLap.LocationFloat                  = new DevExpress.Utils.PointFloat(777.0834F, 78.34375F);
            xrLbl_NguoiLap.Name                           = "xrLbl_NguoiLap";
            xrLbl_NguoiLap.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 96F);
            xrLbl_NguoiLap.SizeF                          = new System.Drawing.SizeF(100F, 23F);
            xrLbl_NguoiLap.StylePriority.UseFont          = false;
            xrLbl_NguoiLap.StylePriority.UseTextAlignment = false;
            xrLbl_NguoiLap.Text                           = "NGƯỜI LẬP";
            xrLbl_NguoiLap.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;

            //
            // xrLblNgayThang
            //
            XRLabel xrLblNgayThang = new DevExpress.XtraReports.UI.XRLabel();
            xrLblNgayThang.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            xrLblNgayThang.LocationFloat                  = new DevExpress.Utils.PointFloat(677.0834F, 55.34375F);
            xrLblNgayThang.Name                           = "xrLblNgayThang";
            xrLblNgayThang.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            xrLblNgayThang.SizeF                          = new System.Drawing.SizeF(291.9162F, 23F);
            xrLblNgayThang.StylePriority.UseFont          = false;
            xrLblNgayThang.StylePriority.UseTextAlignment = false;
            xrLblNgayThang.Text                           = ",ngày    tháng    năm";
            xrLblNgayThang.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;

            ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                xrTable_footer,
                xrLblNgayThang,
                xrLbl_NguoiLap
            });
            ReportFooter.HeightF = 217.1875F;
            ReportFooter.Name    = "ReportFooter";

            #endregion

            #region "BottomMargin"

            XRPageInfo xrPageInfo1 = new XRPageInfo();

            //
            // xrPageInfo1
            //
            xrPageInfo1.Font                           = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            xrPageInfo1.Format                         = "Page{0}/{1}";
            xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(859F, 0F);
            xrPageInfo1.Name                           = "xrPageInfo1";
            xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            xrPageInfo1.SizeF                          = new System.Drawing.SizeF(100F, 23F);
            xrPageInfo1.StylePriority.UseFont          = false;
            xrPageInfo1.StylePriority.UseTextAlignment = false;
            xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;


            BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                xrPageInfo1
            });
            BottomMargin.HeightF       = 83.07291F;
            BottomMargin.Name          = "BottomMargin";
            BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;

            #endregion

            #region "create_report"
            XtraReport rpt = new XtraReport();
            rpt.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
                Detail,
                TopMargin,
                BottomMargin,
                ReportHeader,
                PageHeader,
                ReportFooter
            });
            rpt.Margins    = new System.Drawing.Printing.Margins(100, 100, 100, 100); // can le. left - right - top - bottom
            rpt.Landscape  = true;                                                    // giay ngang
            rpt.PageHeight = 827;                                                     // kich thuoc trang xoay ngang
            rpt.PageWidth  = 1169;                                                    // doi height va width se la A4 doc
            rpt.PaperKind  = System.Drawing.Printing.PaperKind.A4;                    // set giay A4
            rpt.Version    = "17.1";
            #endregion

            #region "show_report"
            ReportPrintTool reportPrintTool = new ReportPrintTool(rpt);
            reportPrintTool.ShowPreviewDialog();
            #endregion
        }
Ejemplo n.º 33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary            xrSummary1         = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1       = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table1             = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column4            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column5            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression5  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column6            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression6  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column7            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression7  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column8            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression8  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column9            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression9  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column10           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression10 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column11           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression11 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column12           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression12 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column13           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression13 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column14           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression14 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column15           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression15 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column16           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression16 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column17           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression17 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column18           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression18 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column19           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression19 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column20           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression20 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column21           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression21 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column22           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression22 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column23           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression23 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column24           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression24 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column25           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression25 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column26           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression26 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column27           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression27 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column28           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression28 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column29           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression29 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column30           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression30 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column31           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression31 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column32           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression32 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column33           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression33 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column34           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression34 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column35           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression35 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column36           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression36 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column37           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression37 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column38           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression38 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column39           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression39 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column40           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression40 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column41           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression41 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column42           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression42 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column43           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression43 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column44           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression44 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column45           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression45 = new DevExpress.DataAccess.Sql.ColumnExpression();
     System.ComponentModel.ComponentResourceManager resources          = new System.ComponentModel.ComponentResourceManager(typeof(XtraRepSelf));
     DevExpress.XtraReports.UI.XRSummary            xrSummary2         = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary            xrSummary3         = new DevExpress.XtraReports.UI.XRSummary();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrPageInfo1      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2      = new DevExpress.XtraReports.UI.XRPageInfo();
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5     = new DevExpress.XtraReports.UI.XRTableCell();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11    = new DevExpress.XtraReports.UI.XRTableCell();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.groupHeaderBand1 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrLabel3         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
     this.calfull          = new DevExpress.XtraReports.UI.CalculatedField();
     this.ReportHeader     = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrlbsubHead      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrlborghead      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrlbsubHead2     = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPictureBox1    = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox2    = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox3    = new DevExpress.XtraReports.UI.XRPictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 129.4167F;
     this.TopMargin.Name    = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.BottomMargin.HeightF = 36.70832F;
     this.BottomMargin.Name    = "BottomMargin";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat    = new DevExpress.Utils.PointFloat(716.1666F, 1.999982F);
     this.xrPageInfo1.Name             = "xrPageInfo1";
     this.xrPageInfo1.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF            = new System.Drawing.SizeF(129.1666F, 23F);
     this.xrPageInfo1.TextFormatString = "Page {0} of {1}";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(10.00001F, 2.00001F);
     this.xrPageInfo2.Name             = "xrPageInfo2";
     this.xrPageInfo2.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.PageInfo         = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo2.SizeF            = new System.Drawing.SizeF(176.0417F, 23F);
     this.xrPageInfo2.TextFormatString = "{0:d MMMM, yyyy}";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.HeightF = 27.74998F;
     this.Detail.Name    = "Detail";
     //
     // xrTable1
     //
     this.xrTable1.Font          = new System.Drawing.Font("Arial", 8F);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 1.000007F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(900F, 25F);
     this.xrTable1.StylePriority.UseFont = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell4,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell5
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "sumRecordNumber([MerchantCode])")
     });
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     xrSummary1.Running              = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell1.Summary       = xrSummary1;
     this.xrTableCell1.Text          = "xrTableCell1";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell1.Weight        = 0.25304241310993719D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[calfull]")
     });
     this.xrTableCell4.Multiline = true;
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell4.StylePriority.UsePadding       = false;
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "xrTableCell4";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell4.Weight        = 1.7978829718035987D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PayerUtin]")
     });
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "xrTableCell2";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell2.Weight        = 0.70934221256931751D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Occupation]")
     });
     this.xrTableCell3.Multiline = true;
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell3.StylePriority.UseTextAlignment = false;
     this.xrTableCell3.Text          = "xrTableCell3";
     this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell3.Weight        = 1.3582155445263859D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PhoneNo1]")
     });
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell5.StylePriority.UsePadding       = false;
     this.xrTableCell5.StylePriority.UseTextAlignment = false;
     this.xrTableCell5.Text          = "xrTableCell5";
     this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell5.Weight        = 1D;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.PageHeader.HeightF = 23.95833F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrTable2
     //
     this.xrTable2.Font          = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(890F, 23.95833F);
     this.xrTable2.StylePriority.UseFont = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8,
         this.xrTableCell9,
         this.xrTableCell11
     });
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.StylePriority.UseTextAlignment = false;
     this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableRow2.Weight        = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell6.Text      = "S/N";
     this.xrTableCell6.Weight    = 0.32127048894576732D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Multiline = true;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "Name";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell7.Weight        = 2.9444136750481169D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Multiline = true;
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text          = "S-TIN\r\n\r\n";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell8.Weight        = 1.3751444713097216D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Multiline = true;
     this.xrTableCell9.Name      = "xrTableCell9";
     this.xrTableCell9.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell9.StylePriority.UsePadding       = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "Type of Business";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell9.Weight        = 2.0574892142337218D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Multiline = true;
     this.xrTableCell11.Name      = "xrTableCell11";
     this.xrTableCell11.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell11.StylePriority.UsePadding       = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "Telephone";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell11.Weight        = 1.5911408729829879D;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "Registration2ConnectionString";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "TaxPayerReferenceNumber";
     table1.Name                   = "ViewTaxPayer";
     columnExpression1.Table       = table1;
     column1.Expression            = columnExpression1;
     columnExpression2.ColumnName  = "PayerUtin";
     columnExpression2.Table       = table1;
     column2.Expression            = columnExpression2;
     columnExpression3.ColumnName  = "Surname";
     columnExpression3.Table       = table1;
     column3.Expression            = columnExpression3;
     columnExpression4.ColumnName  = "FirstName";
     columnExpression4.Table       = table1;
     column4.Expression            = columnExpression4;
     columnExpression5.ColumnName  = "OtherName";
     columnExpression5.Table       = table1;
     column5.Expression            = columnExpression5;
     columnExpression6.ColumnName  = "DateofBirth";
     columnExpression6.Table       = table1;
     column6.Expression            = columnExpression6;
     columnExpression7.ColumnName  = "Email";
     columnExpression7.Table       = table1;
     column7.Expression            = columnExpression7;
     columnExpression8.ColumnName  = "Occupation";
     columnExpression8.Table       = table1;
     column8.Expression            = columnExpression8;
     columnExpression9.ColumnName  = "DateCreated";
     columnExpression9.Table       = table1;
     column9.Expression            = columnExpression9;
     columnExpression10.ColumnName = "Address1";
     columnExpression10.Table      = table1;
     column10.Expression           = columnExpression10;
     columnExpression11.ColumnName = "Address2";
     columnExpression11.Table      = table1;
     column11.Expression           = columnExpression11;
     columnExpression12.ColumnName = "City";
     columnExpression12.Table      = table1;
     column12.Expression           = columnExpression12;
     columnExpression13.ColumnName = "LgaId";
     columnExpression13.Table      = table1;
     column13.Expression           = columnExpression13;
     columnExpression14.ColumnName = "LgaName";
     columnExpression14.Table      = table1;
     column14.Expression           = columnExpression14;
     columnExpression15.ColumnName = "Photograph";
     columnExpression15.Table      = table1;
     column15.Expression           = columnExpression15;
     columnExpression16.ColumnName = "ContentType";
     columnExpression16.Table      = table1;
     column16.Expression           = columnExpression16;
     columnExpression17.ColumnName = "FileName";
     columnExpression17.Table      = table1;
     column17.Expression           = columnExpression17;
     columnExpression18.ColumnName = "Signature";
     columnExpression18.Table      = table1;
     column18.Expression           = columnExpression18;
     columnExpression19.ColumnName = "CourtesyTitle";
     columnExpression19.Table      = table1;
     column19.Expression           = columnExpression19;
     columnExpression20.ColumnName = "CountryCode";
     columnExpression20.Table      = table1;
     column20.Expression           = columnExpression20;
     columnExpression21.ColumnName = "CountryName";
     columnExpression21.Table      = table1;
     column21.Expression           = columnExpression21;
     columnExpression22.ColumnName = "Capital";
     columnExpression22.Table      = table1;
     column22.Expression           = columnExpression22;
     columnExpression23.ColumnName = "ChannelCode";
     columnExpression23.Table      = table1;
     column23.Expression           = columnExpression23;
     columnExpression24.ColumnName = "ChannelName";
     columnExpression24.Table      = table1;
     column24.Expression           = columnExpression24;
     columnExpression25.ColumnName = "StateCode";
     columnExpression25.Table      = table1;
     column25.Expression           = columnExpression25;
     columnExpression26.ColumnName = "StateName";
     columnExpression26.Table      = table1;
     column26.Expression           = columnExpression26;
     columnExpression27.ColumnName = "MerchantCode";
     columnExpression27.Table      = table1;
     column27.Expression           = columnExpression27;
     columnExpression28.ColumnName = "GenderId";
     columnExpression28.Table      = table1;
     column28.Expression           = columnExpression28;
     columnExpression29.ColumnName = "GenderType";
     columnExpression29.Table      = table1;
     column29.Expression           = columnExpression29;
     columnExpression30.ColumnName = "MaritalStatusId";
     columnExpression30.Table      = table1;
     column30.Expression           = columnExpression30;
     columnExpression31.ColumnName = "MaritalStatusType";
     columnExpression31.Table      = table1;
     column31.Expression           = columnExpression31;
     columnExpression32.ColumnName = "PhoneNo1";
     columnExpression32.Table      = table1;
     column32.Expression           = columnExpression32;
     columnExpression33.ColumnName = "PhoneNo2";
     columnExpression33.Table      = table1;
     column33.Expression           = columnExpression33;
     columnExpression34.ColumnName = "PhoneNo3";
     columnExpression34.Table      = table1;
     column34.Expression           = columnExpression34;
     columnExpression35.ColumnName = "StateId";
     columnExpression35.Table      = table1;
     column35.Expression           = columnExpression35;
     columnExpression36.ColumnName = "JTBTin";
     columnExpression36.Table      = table1;
     column36.Expression           = columnExpression36;
     columnExpression37.ColumnName = "EmployeeName";
     columnExpression37.Table      = table1;
     column37.Expression           = columnExpression37;
     columnExpression38.ColumnName = "EmploymentAddress";
     columnExpression38.Table      = table1;
     column38.Expression           = columnExpression38;
     columnExpression39.ColumnName = "EmploymentType";
     columnExpression39.Table      = table1;
     column39.Expression           = columnExpression39;
     columnExpression40.ColumnName = "BusinessTypeId";
     columnExpression40.Table      = table1;
     column40.Expression           = columnExpression40;
     columnExpression41.ColumnName = "TaxAgentReferenceNumber";
     columnExpression41.Table      = table1;
     column41.Expression           = columnExpression41;
     columnExpression42.ColumnName = "Description";
     columnExpression42.Table      = table1;
     column42.Expression           = columnExpression42;
     columnExpression43.ColumnName = "RegTypeCode";
     columnExpression43.Table      = table1;
     column43.Expression           = columnExpression43;
     columnExpression44.ColumnName = "RevenueOfficeID";
     columnExpression44.Table      = table1;
     column44.Expression           = columnExpression44;
     columnExpression45.ColumnName = "RevenueOfficeName";
     columnExpression45.Table      = table1;
     column45.Expression           = columnExpression45;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.Columns.Add(column5);
     selectQuery1.Columns.Add(column6);
     selectQuery1.Columns.Add(column7);
     selectQuery1.Columns.Add(column8);
     selectQuery1.Columns.Add(column9);
     selectQuery1.Columns.Add(column10);
     selectQuery1.Columns.Add(column11);
     selectQuery1.Columns.Add(column12);
     selectQuery1.Columns.Add(column13);
     selectQuery1.Columns.Add(column14);
     selectQuery1.Columns.Add(column15);
     selectQuery1.Columns.Add(column16);
     selectQuery1.Columns.Add(column17);
     selectQuery1.Columns.Add(column18);
     selectQuery1.Columns.Add(column19);
     selectQuery1.Columns.Add(column20);
     selectQuery1.Columns.Add(column21);
     selectQuery1.Columns.Add(column22);
     selectQuery1.Columns.Add(column23);
     selectQuery1.Columns.Add(column24);
     selectQuery1.Columns.Add(column25);
     selectQuery1.Columns.Add(column26);
     selectQuery1.Columns.Add(column27);
     selectQuery1.Columns.Add(column28);
     selectQuery1.Columns.Add(column29);
     selectQuery1.Columns.Add(column30);
     selectQuery1.Columns.Add(column31);
     selectQuery1.Columns.Add(column32);
     selectQuery1.Columns.Add(column33);
     selectQuery1.Columns.Add(column34);
     selectQuery1.Columns.Add(column35);
     selectQuery1.Columns.Add(column36);
     selectQuery1.Columns.Add(column37);
     selectQuery1.Columns.Add(column38);
     selectQuery1.Columns.Add(column39);
     selectQuery1.Columns.Add(column40);
     selectQuery1.Columns.Add(column41);
     selectQuery1.Columns.Add(column42);
     selectQuery1.Columns.Add(column43);
     selectQuery1.Columns.Add(column44);
     selectQuery1.Columns.Add(column45);
     selectQuery1.Name = "ViewTaxPayer";
     selectQuery1.Tables.Add(table1);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // groupHeaderBand1
     //
     this.groupHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel5,
         this.xrLabel2
     });
     this.groupHeaderBand1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("RevenueOfficeName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.groupHeaderBand1.HeightF      = 27.99999F;
     this.groupHeaderBand1.KeepTogether = true;
     this.groupHeaderBand1.Name         = "groupHeaderBand1";
     this.groupHeaderBand1.PageBreak    = DevExpress.XtraReports.UI.PageBreak.BeforeBand;
     //
     // xrLabel3
     //
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "sumCount([MerchantCode])")
     });
     this.xrLabel3.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(532.607F, 0F);
     this.xrLabel3.Multiline                      = true;
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(83.33331F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     xrSummary2.Running                           = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel3.Summary                        = xrSummary2;
     this.xrLabel3.Text                           = "xrLabel3";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(399.375F, 0F);
     this.xrLabel5.Multiline                      = true;
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Group Total";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[RevenueOfficeName]")
     });
     this.xrLabel2.Font                  = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(0.8987109F, 4.874929F);
     this.xrLabel2.Multiline             = true;
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(289.5833F, 23F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "xrLabel2";
     //
     // calfull
     //
     this.calfull.DataMember = "ViewTaxPayer";
     this.calfull.Expression = "[Surname] + \' \' +[FirstName] + \' \' + [OtherName]";
     this.calfull.Name       = "calfull";
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox3,
         this.xrPictureBox2,
         this.xrPictureBox1,
         this.xrlbsubHead,
         this.xrLabel6,
         this.xrLabel4,
         this.xrlborghead,
         this.xrlbsubHead2
     });
     this.ReportHeader.HeightF      = 446.4164F;
     this.ReportHeader.KeepTogether = true;
     this.ReportHeader.Name         = "ReportHeader";
     this.ReportHeader.PageBreak    = DevExpress.XtraReports.UI.PageBreak.AfterBand;
     //
     // xrlbsubHead
     //
     this.xrlbsubHead.Font                           = new System.Drawing.Font("Arial Rounded MT Bold", 20F, System.Drawing.FontStyle.Bold);
     this.xrlbsubHead.LocationFloat                  = new DevExpress.Utils.PointFloat(236.5F, 212.3333F);
     this.xrlbsubHead.Multiline                      = true;
     this.xrlbsubHead.Name                           = "xrlbsubHead";
     this.xrlbsubHead.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrlbsubHead.SizeF                          = new System.Drawing.SizeF(597.9166F, 25.08334F);
     this.xrlbsubHead.StylePriority.UseFont          = false;
     this.xrlbsubHead.StylePriority.UseTextAlignment = false;
     this.xrlbsubHead.Text                           = "LIST OF SELF EMPLOYED TAXPAYERS ";
     this.xrlbsubHead.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel6
     //
     this.xrLabel6.Font                           = new System.Drawing.Font("Arial", 15F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(384.875F, 303.2918F);
     this.xrLabel6.Multiline                      = true;
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(114.5834F, 35.49989F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "TOTAL:";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "sumCount([MerchantCode])")
     });
     this.xrLabel4.Font                           = new System.Drawing.Font("Arial", 15F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(523.375F, 303.2918F);
     this.xrLabel4.Multiline                      = true;
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(150F, 35.49989F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     xrSummary3.Running                           = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrLabel4.Summary                        = xrSummary3;
     this.xrLabel4.Text                           = "xrLabel4";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrLabel4.TextFormatString               = "{0:#,#}";
     //
     // xrlborghead
     //
     this.xrlborghead.Font                           = new System.Drawing.Font("Arial Rounded MT Bold", 25F, System.Drawing.FontStyle.Bold);
     this.xrlborghead.LocationFloat                  = new DevExpress.Utils.PointFloat(242.9584F, 147.6666F);
     this.xrlborghead.Multiline                      = true;
     this.xrlborghead.Name                           = "xrlborghead";
     this.xrlborghead.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrlborghead.SizeF                          = new System.Drawing.SizeF(586.4583F, 48.00002F);
     this.xrlborghead.StylePriority.UseFont          = false;
     this.xrlborghead.StylePriority.UseTextAlignment = false;
     this.xrlborghead.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrlbsubHead2
     //
     this.xrlbsubHead2.Font                           = new System.Drawing.Font("Arial Rounded MT Bold", 19F, System.Drawing.FontStyle.Bold);
     this.xrlbsubHead2.LocationFloat                  = new DevExpress.Utils.PointFloat(231.5001F, 255.1249F);
     this.xrlbsubHead2.Multiline                      = true;
     this.xrlbsubHead2.Name                           = "xrlbsubHead2";
     this.xrlbsubHead2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrlbsubHead2.SizeF                          = new System.Drawing.SizeF(597.9165F, 25.08334F);
     this.xrlbsubHead2.StylePriority.UseFont          = false;
     this.xrlbsubHead2.StylePriority.UseTextAlignment = false;
     this.xrlbsubHead2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox1.ImageSource"));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(35.77F, 120.96F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(162.5F, 132F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox2.ImageSource"));
     this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(35.77F, 120.96F);
     this.xrPictureBox2.Name          = "xrPictureBox2";
     this.xrPictureBox2.SizeF         = new System.Drawing.SizeF(162.5F, 132F);
     this.xrPictureBox2.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
     //
     // xrPictureBox3
     //
     this.xrPictureBox3.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox3.ImageSource"));
     this.xrPictureBox3.LocationFloat = new DevExpress.Utils.PointFloat(35.77F, 120.96F);
     this.xrPictureBox3.Name          = "xrPictureBox3";
     this.xrPictureBox3.SizeF         = new System.Drawing.SizeF(162.5F, 132F);
     this.xrPictureBox3.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
     //
     // XtraRepSelf
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.PageHeader,
         this.groupHeaderBand1,
         this.ReportHeader
     });
     this.CalculatedFields.AddRange(new DevExpress.XtraReports.UI.CalculatedField[] {
         this.calfull
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "ViewTaxPayer";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Landscape  = true;
     this.Margins    = new System.Drawing.Printing.Margins(100, 100, 129, 37);
     this.PageHeight = 850;
     this.PageWidth  = 1100;
     this.Version    = "19.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 34
0
      private XtraReport CreateReport()
      {
          // Create a blank report.
          XtraReport crossTabReport = new XtraReport();

          // Create a detail band and add it to the report.
          DetailBand detail = new DetailBand();
          crossTabReport.Bands.Add(detail);

          // Create a pivot grid and add it to the Detail band.
          XRPivotGrid pivotGrid = new XRPivotGrid();
          detail.Controls.Add(pivotGrid);

          //// Create a data connection.
          //OleDbConnection connection = new
          //OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=..\\..\\nwind.mdb");

          //// Create a data adapter.
          //OleDbDataAdapter adapter = new OleDbDataAdapter(
          //"SELECT CategoryName, ProductName, Country, [Sales Person], Quantity, [Extended Price] FROM SalesPerson",
          //connection);

          //// Creata and populate a dataset.
          //DataSet dataSet1 = new DataSet();
          //adapter.Fill(dataSet1, "SalesPerson");

          // Bind the pivot grid to data.
          pivotGrid.DataSource = GetList();
        //  pivotGrid.DataMember = "SalesPerson";

          // Generate pivot grid's fields.
         
          XRPivotGridField fieldProductName = new XRPivotGridField("LineNo", PivotArea.RowArea);
          XRPivotGridField fieldDate = new XRPivotGridField("Date", PivotArea.RowArea);
          XRPivotGridField fieldCountry = new XRPivotGridField("Size", PivotArea.ColumnArea);
         
          XRPivotGridField fieldQuantity = new XRPivotGridField("Pcs", PivotArea.DataArea);
          fieldDate.ValueFormat.FormatString = "d";

          // Add these fields to the pivot grid.
          pivotGrid.Fields.AddRange(new XRPivotGridField[] {fieldDate, fieldProductName, fieldCountry,
         fieldQuantity});

          return crossTabReport;
      }
Ejemplo n.º 35
0
 private void RrqIxZxw5()
 {
     this.detailBand_0       = new DetailBand();
     this.xrtable_1          = new XRTable();
     this.xrtableRow_8       = new XRTableRow();
     this.xrtableCell_14     = new XRTableCell();
     this.xrtableCell_15     = new XRTableCell();
     this.xrtableCell_16     = new XRTableCell();
     this.xrtableRow_9       = new XRTableRow();
     this.xrtableCell_17     = new XRTableCell();
     this.xrtableCell_26     = new XRTableCell();
     this.xrtableCell_18     = new XRTableCell();
     this.xrtableCell_19     = new XRTableCell();
     this.reportHeaderBand_0 = new ReportHeaderBand();
     this.xrtable_0          = new XRTable();
     this.xrtableRow_0       = new XRTableRow();
     this.xrtableCell_0      = new XRTableCell();
     this.xrtableRow_1       = new XRTableRow();
     this.xrtableCell_1      = new XRTableCell();
     this.xrtableRow_2       = new XRTableRow();
     this.xrtableCell_2      = new XRTableCell();
     this.xrtableRow_3       = new XRTableRow();
     this.xrtableCell_3      = new XRTableCell();
     this.xrtableRow_4       = new XRTableRow();
     this.xrtableCell_4      = new XRTableCell();
     this.xrtableCell_5      = new XRTableCell();
     this.xrtableRow_5       = new XRTableRow();
     this.xrtableCell_6      = new XRTableCell();
     this.xrtableCell_7      = new XRTableCell();
     this.xrtableCell_8      = new XRTableCell();
     this.xrtableRow_6       = new XRTableRow();
     this.xrtableCell_9      = new XRTableCell();
     this.xrtableCell_10     = new XRTableCell();
     this.xrtableRow_7       = new XRTableRow();
     this.xrtableCell_11     = new XRTableCell();
     this.xrtableCell_12     = new XRTableCell();
     this.xrtableCell_13     = new XRTableCell();
     this.reportFooterBand_0 = new ReportFooterBand();
     this.xrtable_2          = new XRTable();
     this.xrtableRow_10      = new XRTableRow();
     this.xrtableCell_20     = new XRTableCell();
     this.xrtableCell_21     = new XRTableCell();
     this.xrtableCell_22     = new XRTableCell();
     this.xrtableRow_11      = new XRTableRow();
     this.xrtableCell_23     = new XRTableCell();
     this.xrtableCell_24     = new XRTableCell();
     this.xrtableCell_25     = new XRTableCell();
     this.xrtableRow_12      = new XRTableRow();
     this.xrtableCell_27     = new XRTableCell();
     this.xrtableCell_28     = new XRTableCell();
     this.xrtableCell_29     = new XRTableCell();
     this.xrtableRow_13      = new XRTableRow();
     this.xrtableCell_30     = new XRTableCell();
     this.xrtable_1.BeginInit();
     this.xrtable_0.BeginInit();
     this.xrtable_2.BeginInit();
     this.BeginInit();
     this.detailBand_0.Controls.AddRange(new XRControl[] { this.xrtable_1 });
     this.detailBand_0.Height  = 0x2a;
     this.detailBand_0.Name    = "Detail";
     this.detailBand_0.Padding = new PaddingInfo(0, 0, 0, 0, 100f);
     this.detailBand_0.StylePriority.UsePadding = false;
     this.detailBand_0.TextAlignment            = TextAlignment.TopLeft;
     this.detailBand_0.BeforePrint += new PrintEventHandler(this.detailBand_0_BeforePrint);
     this.xrtable_1.Location        = new Point(0, 0);
     this.xrtable_1.Name            = "xrTable2";
     this.xrtable_1.Rows.AddRange(new XRTableRow[] { this.xrtableRow_8, this.xrtableRow_9 });
     this.xrtable_1.Size = new Size(0x10b, 0x2a);
     this.xrtableRow_8.Cells.AddRange(new XRTableCell[] { this.xrtableCell_14, this.xrtableCell_15, this.xrtableCell_16 });
     this.xrtableRow_8.Name          = "xrTableRow9";
     this.xrtableRow_8.Weight        = 1.0;
     this.xrtableCell_14.BorderColor = SystemColors.ControlDark;
     this.xrtableCell_14.Borders     = BorderSide.Top;
     this.xrtableCell_14.Font        = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_14.Name        = "Txt_idx";
     this.xrtableCell_14.Padding     = new PaddingInfo(3, 5, 0, 0, 100f);
     this.xrtableCell_14.StylePriority.UseBorderColor   = false;
     this.xrtableCell_14.StylePriority.UseBorders       = false;
     this.xrtableCell_14.StylePriority.UseFont          = false;
     this.xrtableCell_14.StylePriority.UsePadding       = false;
     this.xrtableCell_14.StylePriority.UseTextAlignment = false;
     this.xrtableCell_14.Text          = "Txt_idx";
     this.xrtableCell_14.TextAlignment = TextAlignment.MiddleLeft;
     this.xrtableCell_14.Weight        = 0.2921348314606742;
     this.xrtableCell_14.WordWrap      = false;
     this.xrtableCell_15.BorderColor   = SystemColors.ControlDark;
     this.xrtableCell_15.Borders       = BorderSide.Top;
     this.xrtableCell_15.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_15.Name          = "Txt_GoodsId";
     this.xrtableCell_15.StylePriority.UseBorderColor   = false;
     this.xrtableCell_15.StylePriority.UseBorders       = false;
     this.xrtableCell_15.StylePriority.UseFont          = false;
     this.xrtableCell_15.StylePriority.UseTextAlignment = false;
     this.xrtableCell_15.Text          = "Txt_GoodsId";
     this.xrtableCell_15.TextAlignment = TextAlignment.MiddleCenter;
     this.xrtableCell_15.Weight        = 0.651685393258427;
     this.xrtableCell_15.WordWrap      = false;
     this.xrtableCell_16.BorderColor   = SystemColors.ControlDark;
     this.xrtableCell_16.Borders       = BorderSide.Top;
     this.xrtableCell_16.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_16.Name          = "Txt_FullName";
     this.xrtableCell_16.Padding       = new PaddingInfo(5, 0, 0, 0, 100f);
     this.xrtableCell_16.StylePriority.UseBorderColor   = false;
     this.xrtableCell_16.StylePriority.UseBorders       = false;
     this.xrtableCell_16.StylePriority.UseFont          = false;
     this.xrtableCell_16.StylePriority.UsePadding       = false;
     this.xrtableCell_16.StylePriority.UseTextAlignment = false;
     this.xrtableCell_16.Text          = "Txt_FullName";
     this.xrtableCell_16.TextAlignment = TextAlignment.MiddleLeft;
     this.xrtableCell_16.Weight        = 2.0561797752808988;
     this.xrtableCell_16.WordWrap      = false;
     this.xrtableRow_9.Cells.AddRange(new XRTableCell[] { this.xrtableCell_17, this.xrtableCell_26, this.xrtableCell_18, this.xrtableCell_19 });
     this.xrtableRow_9.Name      = "xrTableRow10";
     this.xrtableRow_9.Weight    = 1.0;
     this.xrtableCell_17.Borders = BorderSide.None;
     this.xrtableCell_17.Font    = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_17.Name    = "xrTableCell6";
     this.xrtableCell_17.StylePriority.UseBorders       = false;
     this.xrtableCell_17.StylePriority.UseFont          = false;
     this.xrtableCell_17.StylePriority.UseTextAlignment = false;
     this.xrtableCell_17.Text                           = "SL :";
     this.xrtableCell_17.TextAlignment                  = TextAlignment.MiddleRight;
     this.xrtableCell_17.Weight                         = 0.4662921348314607;
     this.xrtableCell_26.Borders                        = BorderSide.None;
     this.xrtableCell_26.Name                           = "Txt_Qty";
     this.xrtableCell_26.StylePriority.UseBorders       = false;
     this.xrtableCell_26.StylePriority.UseTextAlignment = false;
     this.xrtableCell_26.Text                           = "Txt_Qty";
     this.xrtableCell_26.TextAlignment                  = TextAlignment.MiddleRight;
     this.xrtableCell_26.Weight                         = 0.5337078651685393;
     this.xrtableCell_18.Borders                        = BorderSide.None;
     this.xrtableCell_18.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_18.Name                           = "Txt_Price";
     this.xrtableCell_18.StylePriority.UseBorders       = false;
     this.xrtableCell_18.StylePriority.UseFont          = false;
     this.xrtableCell_18.StylePriority.UseTextAlignment = false;
     this.xrtableCell_18.Text                           = "Txt_Price";
     this.xrtableCell_18.TextAlignment                  = TextAlignment.MiddleRight;
     this.xrtableCell_18.Weight                         = 0.8651685393258427;
     this.xrtableCell_19.Borders                        = BorderSide.None;
     this.xrtableCell_19.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_19.Name                           = "Txt_Amount";
     this.xrtableCell_19.StylePriority.UseBorders       = false;
     this.xrtableCell_19.StylePriority.UseFont          = false;
     this.xrtableCell_19.StylePriority.UseTextAlignment = false;
     this.xrtableCell_19.Text                           = "Txt_Amount";
     this.xrtableCell_19.TextAlignment                  = TextAlignment.MiddleRight;
     this.xrtableCell_19.Weight                         = 1.1348314606741572;
     this.reportHeaderBand_0.Controls.AddRange(new XRControl[] { this.xrtable_0 });
     this.reportHeaderBand_0.Height = 200;
     this.reportHeaderBand_0.Name   = "ReportHeader";
     this.xrtable_0.Location        = new Point(0, 0);
     this.xrtable_0.Name            = "xrTable1";
     this.xrtable_0.Rows.AddRange(new XRTableRow[] { this.xrtableRow_0, this.xrtableRow_1, this.xrtableRow_2, this.xrtableRow_3, this.xrtableRow_4, this.xrtableRow_5, this.xrtableRow_6, this.xrtableRow_7 });
     this.xrtable_0.Size = new Size(0x10b, 200);
     this.xrtableRow_0.Cells.AddRange(new XRTableCell[] { this.xrtableCell_0 });
     this.xrtableRow_0.Name   = "xrTableRow1";
     this.xrtableRow_0.Weight = 1.0;
     this.xrtableCell_0.Font  = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_0.Name  = "Txt_CompanyName";
     this.xrtableCell_0.StylePriority.UseFont          = false;
     this.xrtableCell_0.StylePriority.UseTextAlignment = false;
     this.xrtableCell_0.Text          = "Txt_CompanyName";
     this.xrtableCell_0.TextAlignment = TextAlignment.MiddleCenter;
     this.xrtableCell_0.Weight        = 3.0;
     this.xrtableRow_1.Cells.AddRange(new XRTableCell[] { this.xrtableCell_1 });
     this.xrtableRow_1.Name   = "xrTableRow2";
     this.xrtableRow_1.Weight = 1.0;
     this.xrtableCell_1.Font  = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_1.Name  = "Txt_Address";
     this.xrtableCell_1.StylePriority.UseFont          = false;
     this.xrtableCell_1.StylePriority.UseTextAlignment = false;
     this.xrtableCell_1.Text          = "Txt_Address";
     this.xrtableCell_1.TextAlignment = TextAlignment.MiddleCenter;
     this.xrtableCell_1.Weight        = 3.0;
     this.xrtableRow_2.Cells.AddRange(new XRTableCell[] { this.xrtableCell_2 });
     this.xrtableRow_2.Name   = "xrTableRow3";
     this.xrtableRow_2.Weight = 1.0;
     this.xrtableCell_2.Font  = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_2.Name  = "Txt_Phone";
     this.xrtableCell_2.StylePriority.UseFont          = false;
     this.xrtableCell_2.StylePriority.UseTextAlignment = false;
     this.xrtableCell_2.Text          = "Txt_Phone";
     this.xrtableCell_2.TextAlignment = TextAlignment.MiddleCenter;
     this.xrtableCell_2.Weight        = 3.0;
     this.xrtableRow_3.Cells.AddRange(new XRTableCell[] { this.xrtableCell_3 });
     this.xrtableRow_3.Name   = "xrTableRow4";
     this.xrtableRow_3.Weight = 1.0;
     this.xrtableCell_3.Font  = new Font("Tahoma", 11.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.xrtableCell_3.Name  = "xrTableCell10";
     this.xrtableCell_3.StylePriority.UseFont          = false;
     this.xrtableCell_3.StylePriority.UseTextAlignment = false;
     this.xrtableCell_3.Text          = "H\x00d3A ĐƠN TRẢ LẠI H\x00c0NG";
     this.xrtableCell_3.TextAlignment = TextAlignment.MiddleCenter;
     this.xrtableCell_3.Weight        = 3.0;
     this.xrtableRow_4.Cells.AddRange(new XRTableCell[] { this.xrtableCell_4, this.xrtableCell_5 });
     this.xrtableRow_4.Name     = "xrTableRow5";
     this.xrtableRow_4.Weight   = 1.0;
     this.xrtableCell_4.Font    = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_4.Name    = "xrTableCell13";
     this.xrtableCell_4.Padding = new PaddingInfo(3, 0, 0, 0, 100f);
     this.xrtableCell_4.StylePriority.UseFont          = false;
     this.xrtableCell_4.StylePriority.UsePadding       = false;
     this.xrtableCell_4.StylePriority.UseTextAlignment = false;
     this.xrtableCell_4.Text                           = "Số h\x00f3a đơn :";
     this.xrtableCell_4.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_4.Weight                         = 1.0;
     this.xrtableCell_5.Font                           = new Font("Tahoma", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.xrtableCell_5.Name                           = "Txt_TransNum";
     this.xrtableCell_5.Padding                        = new PaddingInfo(5, 0, 0, 0, 100f);
     this.xrtableCell_5.StylePriority.UseFont          = false;
     this.xrtableCell_5.StylePriority.UsePadding       = false;
     this.xrtableCell_5.StylePriority.UseTextAlignment = false;
     this.xrtableCell_5.Text                           = "Txt_TransNum";
     this.xrtableCell_5.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_5.Weight                         = 2.0;
     this.xrtableRow_5.Cells.AddRange(new XRTableCell[] { this.xrtableCell_6, this.xrtableCell_7, this.xrtableCell_8 });
     this.xrtableRow_5.Name     = "xrTableRow6";
     this.xrtableRow_5.Weight   = 1.0;
     this.xrtableCell_6.Font    = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_6.Name    = "xrTableCell16";
     this.xrtableCell_6.Padding = new PaddingInfo(3, 0, 0, 0, 100f);
     this.xrtableCell_6.StylePriority.UseFont          = false;
     this.xrtableCell_6.StylePriority.UsePadding       = false;
     this.xrtableCell_6.StylePriority.UseTextAlignment = false;
     this.xrtableCell_6.Text                           = "Ng\x00e0y :";
     this.xrtableCell_6.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_6.Weight                         = 1.0;
     this.xrtableCell_7.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_7.Name                           = "Txt_TranDate";
     this.xrtableCell_7.Padding                        = new PaddingInfo(5, 0, 0, 0, 100f);
     this.xrtableCell_7.StylePriority.UseFont          = false;
     this.xrtableCell_7.StylePriority.UsePadding       = false;
     this.xrtableCell_7.StylePriority.UseTextAlignment = false;
     this.xrtableCell_7.Text                           = "Txt_TranDate";
     this.xrtableCell_7.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_7.Weight                         = 1.0;
     this.xrtableCell_8.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_8.Name                           = "Txt_TranTime";
     this.xrtableCell_8.StylePriority.UseFont          = false;
     this.xrtableCell_8.StylePriority.UseTextAlignment = false;
     this.xrtableCell_8.Text                           = "Txt_TranTime";
     this.xrtableCell_8.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_8.Weight                         = 1.0;
     this.xrtableRow_6.Cells.AddRange(new XRTableCell[] { this.xrtableCell_9, this.xrtableCell_10 });
     this.xrtableRow_6.Name     = "xrTableRow7";
     this.xrtableRow_6.Weight   = 1.0;
     this.xrtableCell_9.Font    = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_9.Name    = "xrTableCell19";
     this.xrtableCell_9.Padding = new PaddingInfo(3, 0, 0, 0, 100f);
     this.xrtableCell_9.StylePriority.UseFont          = false;
     this.xrtableCell_9.StylePriority.UsePadding       = false;
     this.xrtableCell_9.StylePriority.UseTextAlignment = false;
     this.xrtableCell_9.Text                            = "Thu ng\x00e2n :";
     this.xrtableCell_9.TextAlignment                   = TextAlignment.MiddleLeft;
     this.xrtableCell_9.Weight                          = 1.0;
     this.xrtableCell_10.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_10.Name                           = "Txt_UserName";
     this.xrtableCell_10.Padding                        = new PaddingInfo(5, 0, 0, 0, 100f);
     this.xrtableCell_10.StylePriority.UseFont          = false;
     this.xrtableCell_10.StylePriority.UsePadding       = false;
     this.xrtableCell_10.StylePriority.UseTextAlignment = false;
     this.xrtableCell_10.Text                           = "Txt_UserName";
     this.xrtableCell_10.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_10.Weight                         = 2.0;
     this.xrtableRow_7.Cells.AddRange(new XRTableCell[] { this.xrtableCell_11, this.xrtableCell_12, this.xrtableCell_13 });
     this.xrtableRow_7.Name          = "xrTableRow8";
     this.xrtableRow_7.Weight        = 1.0;
     this.xrtableCell_11.BorderColor = SystemColors.ControlDark;
     this.xrtableCell_11.Borders     = BorderSide.Bottom;
     this.xrtableCell_11.Font        = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_11.Name        = "xrTableCell22";
     this.xrtableCell_11.StylePriority.UseBorderColor   = false;
     this.xrtableCell_11.StylePriority.UseBorders       = false;
     this.xrtableCell_11.StylePriority.UseFont          = false;
     this.xrtableCell_11.StylePriority.UseTextAlignment = false;
     this.xrtableCell_11.TextAlignment = TextAlignment.MiddleLeft;
     this.xrtableCell_11.Weight        = 1.0;
     this.xrtableCell_12.BorderColor   = SystemColors.ControlDark;
     this.xrtableCell_12.Borders       = BorderSide.Bottom;
     this.xrtableCell_12.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_12.Name          = "xrTableCell23";
     this.xrtableCell_12.StylePriority.UseBorderColor   = false;
     this.xrtableCell_12.StylePriority.UseBorders       = false;
     this.xrtableCell_12.StylePriority.UseFont          = false;
     this.xrtableCell_12.StylePriority.UseTextAlignment = false;
     this.xrtableCell_12.TextAlignment = TextAlignment.MiddleLeft;
     this.xrtableCell_12.Weight        = 1.0;
     this.xrtableCell_13.BorderColor   = SystemColors.ControlDark;
     this.xrtableCell_13.Borders       = BorderSide.Bottom;
     this.xrtableCell_13.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_13.Name          = "xrTableCell24";
     this.xrtableCell_13.StylePriority.UseBorderColor   = false;
     this.xrtableCell_13.StylePriority.UseBorders       = false;
     this.xrtableCell_13.StylePriority.UseFont          = false;
     this.xrtableCell_13.StylePriority.UseTextAlignment = false;
     this.xrtableCell_13.TextAlignment = TextAlignment.MiddleLeft;
     this.xrtableCell_13.Weight        = 1.0;
     this.reportFooterBand_0.Controls.AddRange(new XRControl[] { this.xrtable_2 });
     this.reportFooterBand_0.Height = 0x6c;
     this.reportFooterBand_0.Name   = "ReportFooter";
     this.xrtable_2.Location        = new Point(0, 0);
     this.xrtable_2.Name            = "xrTable3";
     this.xrtable_2.Rows.AddRange(new XRTableRow[] { this.xrtableRow_10, this.xrtableRow_11, this.xrtableRow_12, this.xrtableRow_13 });
     this.xrtable_2.Size = new Size(0x10b, 100);
     this.xrtableRow_10.Cells.AddRange(new XRTableCell[] { this.xrtableCell_20, this.xrtableCell_21, this.xrtableCell_22 });
     this.xrtableRow_10.Name         = "xrTableRow11";
     this.xrtableRow_10.Weight       = 1.0;
     this.xrtableCell_20.BorderColor = SystemColors.ControlDark;
     this.xrtableCell_20.Borders     = BorderSide.Top;
     this.xrtableCell_20.Font        = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_20.Name        = "xrTableCell11";
     this.xrtableCell_20.StylePriority.UseBorderColor   = false;
     this.xrtableCell_20.StylePriority.UseBorders       = false;
     this.xrtableCell_20.StylePriority.UseFont          = false;
     this.xrtableCell_20.StylePriority.UseTextAlignment = false;
     this.xrtableCell_20.TextAlignment = TextAlignment.MiddleLeft;
     this.xrtableCell_20.Weight        = 0.651685393258427;
     this.xrtableCell_21.BorderColor   = SystemColors.ControlDark;
     this.xrtableCell_21.Borders       = BorderSide.Top;
     this.xrtableCell_21.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_21.Name          = "xrTableCell12";
     this.xrtableCell_21.Padding       = new PaddingInfo(3, 0, 0, 0, 100f);
     this.xrtableCell_21.StylePriority.UseBorderColor   = false;
     this.xrtableCell_21.StylePriority.UseBorders       = false;
     this.xrtableCell_21.StylePriority.UseFont          = false;
     this.xrtableCell_21.StylePriority.UsePadding       = false;
     this.xrtableCell_21.StylePriority.UseTextAlignment = false;
     this.xrtableCell_21.Text          = "Tổng tiền :";
     this.xrtableCell_21.TextAlignment = TextAlignment.MiddleLeft;
     this.xrtableCell_21.Weight        = 1.2247191011235954;
     this.xrtableCell_22.BorderColor   = SystemColors.ControlDark;
     this.xrtableCell_22.Borders       = BorderSide.Top;
     this.xrtableCell_22.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_22.Name          = "Txt_Totalamt";
     this.xrtableCell_22.StylePriority.UseBorderColor   = false;
     this.xrtableCell_22.StylePriority.UseBorders       = false;
     this.xrtableCell_22.StylePriority.UseFont          = false;
     this.xrtableCell_22.StylePriority.UseTextAlignment = false;
     this.xrtableCell_22.Text          = "Txt_Totalamt";
     this.xrtableCell_22.TextAlignment = TextAlignment.MiddleRight;
     this.xrtableCell_22.Weight        = 1.1235955056179776;
     this.xrtableRow_11.Cells.AddRange(new XRTableCell[] { this.xrtableCell_23, this.xrtableCell_24, this.xrtableCell_25 });
     this.xrtableRow_11.Name   = "xrTableRow12";
     this.xrtableRow_11.Weight = 1.0;
     this.xrtableCell_23.Font  = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_23.Name  = "xrTableCell25";
     this.xrtableCell_23.StylePriority.UseFont          = false;
     this.xrtableCell_23.StylePriority.UseTextAlignment = false;
     this.xrtableCell_23.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_23.Weight                         = 0.66292134831460681;
     this.xrtableCell_24.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_24.Name                           = "xrTableCell26";
     this.xrtableCell_24.Padding                        = new PaddingInfo(3, 0, 0, 0, 100f);
     this.xrtableCell_24.StylePriority.UseFont          = false;
     this.xrtableCell_24.StylePriority.UsePadding       = false;
     this.xrtableCell_24.StylePriority.UseTextAlignment = false;
     this.xrtableCell_24.Text                           = "Chiết khấu :";
     this.xrtableCell_24.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_24.Weight                         = 1.2134831460674158;
     this.xrtableCell_25.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_25.Name                           = "Txt_Discount";
     this.xrtableCell_25.StylePriority.UseFont          = false;
     this.xrtableCell_25.StylePriority.UseTextAlignment = false;
     this.xrtableCell_25.Text                           = "Txt_Discount";
     this.xrtableCell_25.TextAlignment                  = TextAlignment.MiddleRight;
     this.xrtableCell_25.Weight                         = 1.1235955056179776;
     this.xrtableRow_12.Cells.AddRange(new XRTableCell[] { this.xrtableCell_27, this.xrtableCell_28, this.xrtableCell_29 });
     this.xrtableRow_12.Name   = "xrTableRow13";
     this.xrtableRow_12.Weight = 1.0;
     this.xrtableCell_27.Font  = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
     this.xrtableCell_27.Name  = "xrTableCell1";
     this.xrtableCell_27.StylePriority.UseFont          = false;
     this.xrtableCell_27.StylePriority.UseTextAlignment = false;
     this.xrtableCell_27.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_27.Weight                         = 0.66292134831460681;
     this.xrtableCell_28.Font                           = new Font("Tahoma", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.xrtableCell_28.Name                           = "xrTableCell2";
     this.xrtableCell_28.Padding                        = new PaddingInfo(3, 0, 0, 0, 100f);
     this.xrtableCell_28.StylePriority.UseFont          = false;
     this.xrtableCell_28.StylePriority.UsePadding       = false;
     this.xrtableCell_28.StylePriority.UseTextAlignment = false;
     this.xrtableCell_28.Text                           = "Tổng trả lại :";
     this.xrtableCell_28.TextAlignment                  = TextAlignment.MiddleLeft;
     this.xrtableCell_28.Weight                         = 1.2134831460674158;
     this.xrtableCell_29.Font                           = new Font("Tahoma", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
     this.xrtableCell_29.Name                           = "Txt_PayAmt";
     this.xrtableCell_29.StylePriority.UseFont          = false;
     this.xrtableCell_29.StylePriority.UseTextAlignment = false;
     this.xrtableCell_29.Text                           = "Txt_PayAmt";
     this.xrtableCell_29.TextAlignment                  = TextAlignment.MiddleRight;
     this.xrtableCell_29.Weight                         = 1.1235955056179776;
     this.xrtableRow_13.Cells.AddRange(new XRTableCell[] { this.xrtableCell_30 });
     this.xrtableRow_13.Name     = "xrTableRow14";
     this.xrtableRow_13.Weight   = 1.0;
     this.xrtableCell_30.Borders = BorderSide.None;
     this.xrtableCell_30.Name    = "xrTableCell3";
     this.xrtableCell_30.StylePriority.UseBorders = false;
     this.xrtableCell_30.Weight = 3.0000000000000004;
     base.Bands.AddRange(new Band[] { this.detailBand_0, this.reportHeaderBand_0, this.reportFooterBand_0 });
     base.Margins      = new Margins(4, 4, 30, 30);
     base.PageHeight   = 0x491;
     base.PageWidth    = 0x115;
     base.PaperKind    = PaperKind.Custom;
     base.Version      = "9.2";
     this.BeforePrint += new PrintEventHandler(this.voucher_2_BeforePrint);
     this.xrtable_1.EndInit();
     this.xrtable_0.EndInit();
     this.xrtable_2.EndInit();
     this.EndInit();
 }
Ejemplo n.º 36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary            xrSummary1       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(BCHieuSuatSuDung));
     this.GroupHeader1     = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable2         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3     = new DevExpress.XtraReports.UI.XRTableCell();
     this.formattingRule1  = new DevExpress.XtraReports.UI.FormattingRule();
     this.TopMargin        = new DevExpress.XtraReports.UI.TopMarginBand();
     this.PageHeader       = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLabel2         = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1         = new DevExpress.XtraReports.UI.XRLabel();
     this.LightBlue        = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Detail           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1         = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell2     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9     = new DevExpress.XtraReports.UI.XRTableCell();
     this.TableStyle       = new DevExpress.XtraReports.UI.XRControlStyle();
     this.White            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageFooter       = new DevExpress.XtraReports.UI.PageFooterBand();
     this.TableHeaderStyle = new DevExpress.XtraReports.UI.XRControlStyle();
     this.LavenderStyle    = new DevExpress.XtraReports.UI.XRControlStyle();
     this.BottomMargin     = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.sqlDataSource1   = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // GroupHeader1
     //
     this.GroupHeader1.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupHeader1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.GroupHeader1.Dpi = 100F;
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("ProductName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF         = 46.875F;
     this.GroupHeader1.Name            = "GroupHeader1";
     this.GroupHeader1.RepeatEveryPage = true;
     //
     // xrTable2
     //
     this.xrTable2.BackColor     = System.Drawing.Color.White;
     this.xrTable2.Dpi           = 100F;
     this.xrTable2.Font          = new System.Drawing.Font("Times New Roman", 18F, System.Drawing.FontStyle.Bold);
     this.xrTable2.ForeColor     = System.Drawing.Color.Black;
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(1.525879E-05F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF                          = new System.Drawing.SizeF(822.9999F, 46.875F);
     this.xrTable2.StyleName                      = "TableHeaderStyle";
     this.xrTable2.StylePriority.UseFont          = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell4,
         this.xrTableCell3
     });
     this.xrTableRow2.Dpi    = 100F;
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Dpi    = 100F;
     this.xrTableCell1.Name   = "xrTableCell1";
     this.xrTableCell1.Text   = "STT";
     this.xrTableCell1.Weight = 0.7459928681595458D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Dpi  = 100F;
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseTextAlignment = false;
     this.xrTableCell4.Text          = "Tên mặt hàng ";
     this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell4.Weight        = 2.4890569209196167D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Dpi    = 100F;
     this.xrTableCell3.Name   = "xrTableCell3";
     this.xrTableCell3.Text   = "Số đơn vị sử dụng";
     this.xrTableCell3.Weight = 2.1230782979990934D;
     //
     // formattingRule1
     //
     this.formattingRule1.Name = "formattingRule1";
     //
     // TopMargin
     //
     this.TopMargin.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.TopMargin.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.TopMargin.Dpi         = 100F;
     this.TopMargin.HeightF     = 23F;
     this.TopMargin.Name        = "TopMargin";
     this.TopMargin.Padding     = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.StylePriority.UseBackColor   = false;
     this.TopMargin.StylePriority.UseBorderColor = false;
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageHeader.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrLabel1
     });
     this.PageHeader.Dpi     = 100F;
     this.PageHeader.HeightF = 113.5417F;
     this.PageHeader.Name    = "PageHeader";
     this.PageHeader.StylePriority.UseBackColor   = false;
     this.PageHeader.StylePriority.UseBorderColor = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Dpi                            = 100F;
     this.xrLabel2.Font                           = new System.Drawing.Font("Sitka Text", 16F);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(6.357829E-05F, 70.20836F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(822.9998F, 31.24997F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "(Tính đến ngày [GetSystemdate().Column1])";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.BorderWidth                    = 0F;
     this.xrLabel1.Dpi                            = 100F;
     this.xrLabel1.Font                           = new System.Drawing.Font("Sitka Text", 36F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(160)))));
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 10.00001F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(823F, 60.20834F);
     this.xrLabel1.StyleName                      = "TableStyle";
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseForeColor     = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Báo Cáo Hiệu Suất Sử Dụng ";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // LightBlue
     //
     this.LightBlue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.LightBlue.Name      = "LightBlue";
     //
     // Detail
     //
     this.Detail.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Detail.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 48.95833F;
     this.Detail.Name          = "Detail";
     this.Detail.OddStyleName  = "LightBlue";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrTable1
     //
     this.xrTable1.Dpi           = 100F;
     this.xrTable1.EvenStyleName = "LavenderStyle";
     this.xrTable1.Font          = new System.Drawing.Font("Times New Roman", 18F);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(6.103516E-05F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.OddStyleName  = "White";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(822.9998F, 47.29166F);
     this.xrTable1.StylePriority.UseFont          = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell2,
         this.xrTableCell6,
         this.xrTableCell9
     });
     this.xrTableRow1.Dpi    = 100F;
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Dpi  = 100F;
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString         = "{0:#,#}";
     xrSummary1.Func                 = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running              = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrTableCell2.Summary       = xrSummary1;
     this.xrTableCell2.Text          = "xrTableCell2";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight        = 0.59648159136151668D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHieuSuatSuDung().TenMatHang")
     });
     this.xrTableCell6.Dpi    = 100F;
     this.xrTableCell6.Name   = "xrTableCell6";
     this.xrTableCell6.Text   = "xrTableCell6";
     this.xrTableCell6.Weight = 1.9902028058924659D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "GetHieuSuatSuDung().SLDVTheoMH")
     });
     this.xrTableCell9.Dpi  = 100F;
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "xrTableCell9";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 1.6975732827658032D;
     //
     // TableStyle
     //
     this.TableStyle.BackColor       = System.Drawing.Color.White;
     this.TableStyle.BorderColor     = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(250)))));
     this.TableStyle.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.TableStyle.Borders         = DevExpress.XtraPrinting.BorderSide.None;
     this.TableStyle.Font            = new System.Drawing.Font("Calibri", 36F);
     this.TableStyle.ForeColor       = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.TableStyle.Name            = "TableStyle";
     this.TableStyle.Padding         = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // White
     //
     this.White.BackColor   = System.Drawing.Color.White;
     this.White.BorderWidth = 0F;
     this.White.Font        = new System.Drawing.Font("Segoe UI", 9.75F);
     this.White.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
     this.White.Name        = "White";
     this.White.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // PageFooter
     //
     this.PageFooter.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.PageFooter.Borders     = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Top | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.PageFooter.Dpi         = 100F;
     this.PageFooter.HeightF     = 31.25F;
     this.PageFooter.Name        = "PageFooter";
     //
     // TableHeaderStyle
     //
     this.TableHeaderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(136)))), ((int)(((byte)(153)))));
     this.TableHeaderStyle.Font      = new System.Drawing.Font("Segoe UI", 18F, System.Drawing.FontStyle.Bold);
     this.TableHeaderStyle.ForeColor = System.Drawing.Color.White;
     this.TableHeaderStyle.Name      = "TableHeaderStyle";
     this.TableHeaderStyle.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // LavenderStyle
     //
     this.LavenderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(250)))));
     this.LavenderStyle.Font      = new System.Drawing.Font("Segoe UI", 9.75F);
     this.LavenderStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(47)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
     this.LavenderStyle.Name      = "LavenderStyle";
     this.LavenderStyle.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 0, 0, 0, 100F);
     //
     // BottomMargin
     //
     this.BottomMargin.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.BottomMargin.BorderColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 39.66665F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "WebQLKhoDuoc";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name           = "GetHieuSuatSuDung()";
     storedProcQuery1.StoredProcName = "GetHieuSuatSuDung";
     storedProcQuery2.Name           = "GetSystemdate()";
     storedProcQuery2.StoredProcName = "GetSystemdate";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1,
         storedProcQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // BCHieuSuatSuDung
     //
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.GroupHeader1,
         this.PageHeader,
         this.PageFooter
     });
     this.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "GetHieuSuatSuDung()";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial Narrow", 9.75F);
     this.FormattingRuleSheet.AddRange(new DevExpress.XtraReports.UI.FormattingRule[] {
         this.formattingRule1
     });
     this.Margins = new System.Drawing.Printing.Margins(11, 16, 23, 40);
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.LightBlue,
         this.TableHeaderStyle,
         this.TableStyle,
         this.White,
         this.LavenderStyle
     });
     this.Version = "16.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConsolidatedReport));
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series    series1    = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.SideBySideBarSeriesLabel sideBySideBarSeriesLabel1 = new DevExpress.XtraCharts.SideBySideBarSeriesLabel();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1          = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1           = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery2          = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2           = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3           = new DevExpress.DataAccess.Sql.QueryParameter();
     this.Detail               = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin            = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin         = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader         = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.Heading2             = new DevExpress.XtraReports.UI.XRLabel();
     this.valFirstName         = new DevExpress.XtraReports.UI.XRLabel();
     this.FirstName            = new DevExpress.XtraReports.UI.XRLabel();
     this.PPGLogo              = new DevExpress.XtraReports.UI.XRPictureBox();
     this.LastName             = new DevExpress.XtraReports.UI.XRLabel();
     this.DOB                  = new DevExpress.XtraReports.UI.XRLabel();
     this.valLasttName         = new DevExpress.XtraReports.UI.XRLabel();
     this.valDOB               = new DevExpress.XtraReports.UI.XRLabel();
     this.HeaderLine           = new DevExpress.XtraReports.UI.XRLine();
     this.Heading              = new DevExpress.XtraReports.UI.XRLabel();
     this.xrChart1             = new DevExpress.XtraReports.UI.XRChart();
     this.sqlDataSource1       = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.PageFooter           = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLine1              = new DevExpress.XtraReports.UI.XRLine();
     this.ReportDate           = new DevExpress.XtraReports.UI.XRLabel();
     this.ReportDateVal        = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo1          = new DevExpress.XtraReports.UI.XRPageInfo();
     this.DetailReport         = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1              = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable1             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1          = new DevExpress.XtraReports.UI.XRTableRow();
     this.QuestionCell         = new DevExpress.XtraReports.UI.XRTableCell();
     this.AnswerCell           = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupHeader1         = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.xrTable2             = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2          = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1         = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2         = new DevExpress.XtraReports.UI.XRTableCell();
     this.lblRiskCategory      = new DevExpress.XtraReports.UI.XRLabel();
     this.valRiskCategory      = new DevExpress.XtraReports.UI.XRLabel();
     this.lblScore             = new DevExpress.XtraReports.UI.XRLabel();
     this.valScore             = new DevExpress.XtraReports.UI.XRLabel();
     this.lblTestDate          = new DevExpress.XtraReports.UI.XRLabel();
     this.varTestDate          = new DevExpress.XtraReports.UI.XRLabel();
     this.valQuestionnarieName = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter1         = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLine2              = new DevExpress.XtraReports.UI.XRLine();
     this.clarityDBSet1        = new ClarityWebAppDX.ClarityDBSet();
     this.@PatientID           = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clarityDBSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.HeightF       = 0F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.HeightF       = 14F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF       = 15.625F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.Heading2,
         this.valFirstName,
         this.FirstName,
         this.PPGLogo,
         this.LastName,
         this.DOB,
         this.valLasttName,
         this.valDOB,
         this.HeaderLine,
         this.Heading,
         this.xrChart1
     });
     this.ReportHeader.HeightF = 369.5001F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // Heading2
     //
     this.Heading2.Font                           = new System.Drawing.Font("Times New Roman", 16.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Heading2.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.Heading2.LocationFloat                  = new DevExpress.Utils.PointFloat(8.900961E-05F, 105.5F);
     this.Heading2.Name                           = "Heading2";
     this.Heading2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.Heading2.SizeF                          = new System.Drawing.SizeF(819.9999F, 23F);
     this.Heading2.StylePriority.UseFont          = false;
     this.Heading2.StylePriority.UseForeColor     = false;
     this.Heading2.StylePriority.UseTextAlignment = false;
     this.Heading2.Text                           = "Test Results Summary";
     this.Heading2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // valFirstName
     //
     this.valFirstName.AutoWidth = true;
     this.valFirstName.CanShrink = true;
     this.valFirstName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetails.PatientFirstName")
     });
     this.valFirstName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valFirstName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valFirstName.LocationFloat              = new DevExpress.Utils.PointFloat(286.6665F, 46.00003F);
     this.valFirstName.Name                       = "valFirstName";
     this.valFirstName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valFirstName.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valFirstName.StylePriority.UseFont      = false;
     this.valFirstName.StylePriority.UseForeColor = false;
     //
     // FirstName
     //
     this.FirstName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FirstName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.FirstName.LocationFloat              = new DevExpress.Utils.PointFloat(176.4583F, 46.00003F);
     this.FirstName.Name                       = "FirstName";
     this.FirstName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.FirstName.SizeF                      = new System.Drawing.SizeF(110.2083F, 23F);
     this.FirstName.StylePriority.UseFont      = false;
     this.FirstName.StylePriority.UseForeColor = false;
     this.FirstName.Text                       = "First Name:";
     //
     // PPGLogo
     //
     this.PPGLogo.Image         = ((System.Drawing.Image)(resources.GetObject("PPGLogo.Image")));
     this.PPGLogo.LocationFloat = new DevExpress.Utils.PointFloat(0F, 23.00002F);
     this.PPGLogo.Name          = "PPGLogo";
     this.PPGLogo.SizeF         = new System.Drawing.SizeF(166.0416F, 69.00002F);
     this.PPGLogo.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.Squeeze;
     //
     // LastName
     //
     this.LastName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LastName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.LastName.LocationFloat              = new DevExpress.Utils.PointFloat(176.4583F, 69.00002F);
     this.LastName.Name                       = "LastName";
     this.LastName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.LastName.SizeF                      = new System.Drawing.SizeF(110.2083F, 23F);
     this.LastName.StylePriority.UseFont      = false;
     this.LastName.StylePriority.UseForeColor = false;
     this.LastName.Text                       = "Last Name:";
     //
     // DOB
     //
     this.DOB.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DOB.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.DOB.LocationFloat              = new DevExpress.Utils.PointFloat(532.5416F, 46.00003F);
     this.DOB.Name                       = "DOB";
     this.DOB.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.DOB.SizeF                      = new System.Drawing.SizeF(110.2083F, 23F);
     this.DOB.StylePriority.UseFont      = false;
     this.DOB.StylePriority.UseForeColor = false;
     this.DOB.Text                       = "Date of Birth:";
     //
     // valLasttName
     //
     this.valLasttName.AutoWidth = true;
     this.valLasttName.CanShrink = true;
     this.valLasttName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetails.PatientLastName")
     });
     this.valLasttName.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valLasttName.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valLasttName.LocationFloat              = new DevExpress.Utils.PointFloat(286.6665F, 69.00002F);
     this.valLasttName.Name                       = "valLasttName";
     this.valLasttName.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valLasttName.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valLasttName.StylePriority.UseFont      = false;
     this.valLasttName.StylePriority.UseForeColor = false;
     //
     // valDOB
     //
     this.valDOB.AutoWidth = true;
     this.valDOB.CanShrink = true;
     this.valDOB.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientDetails.FormattedDOB")
     });
     this.valDOB.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valDOB.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valDOB.LocationFloat              = new DevExpress.Utils.PointFloat(642.7498F, 46.00003F);
     this.valDOB.Name                       = "valDOB";
     this.valDOB.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valDOB.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valDOB.StylePriority.UseFont      = false;
     this.valDOB.StylePriority.UseForeColor = false;
     //
     // HeaderLine
     //
     this.HeaderLine.BorderColor   = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.HeaderLine.BorderWidth   = 1F;
     this.HeaderLine.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.HeaderLine.LineWidth     = 2;
     this.HeaderLine.LocationFloat = new DevExpress.Utils.PointFloat(0F, 92.33337F);
     this.HeaderLine.Name          = "HeaderLine";
     this.HeaderLine.SizeF         = new System.Drawing.SizeF(820F, 13.16666F);
     this.HeaderLine.StylePriority.UseBorderColor = false;
     this.HeaderLine.StylePriority.UseBorderWidth = false;
     this.HeaderLine.StylePriority.UseForeColor   = false;
     //
     // Heading
     //
     this.Heading.Font                           = new System.Drawing.Font("Times New Roman", 16.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Heading.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.Heading.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
     this.Heading.Name                           = "Heading";
     this.Heading.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.Heading.SizeF                          = new System.Drawing.SizeF(819.9999F, 23F);
     this.Heading.StylePriority.UseFont          = false;
     this.Heading.StylePriority.UseForeColor     = false;
     this.Heading.StylePriority.UseTextAlignment = false;
     this.Heading.Text                           = "Patient Summary";
     this.Heading.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrChart1
     //
     this.xrChart1.BorderColor = System.Drawing.Color.Black;
     this.xrChart1.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.xrChart1.DataMember  = "spGetPatientConsolidatedQuestionnaireList";
     this.xrChart1.DataSource  = this.sqlDataSource1;
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     xyDiagram1.DefaultPane.EnableAxisXScrolling = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.DefaultPane.EnableAxisXZooming   = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.DefaultPane.EnableAxisYScrolling = DevExpress.Utils.DefaultBoolean.False;
     xyDiagram1.DefaultPane.EnableAxisYZooming   = DevExpress.Utils.DefaultBoolean.False;
     this.xrChart1.Diagram          = xyDiagram1;
     this.xrChart1.Legend.Name      = "Default Legend";
     this.xrChart1.LocationFloat    = new DevExpress.Utils.PointFloat(21.49999F, 139.5F);
     this.xrChart1.Name             = "xrChart1";
     this.xrChart1.PaletteName      = "Metro";
     series1.ArgumentDataMember     = "QuestionnaireName";
     series1.ColorDataMember        = "RiskCategory";
     sideBySideBarSeriesLabel1.Font = new System.Drawing.Font("Times New Roman", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     series1.Label        = sideBySideBarSeriesLabel1;
     series1.LegendName   = "Default Legend";
     series1.Name         = "Series 1";
     series1.ShowInLegend = false;
     series1.ValueDataMembersSerializable = "Score";
     this.xrChart1.SeriesSerializable     = new DevExpress.XtraCharts.Series[] {
         series1
     };
     this.xrChart1.SeriesTemplate.ArgumentDataMember           = "QuestionnaireName";
     this.xrChart1.SeriesTemplate.ColorDataMember              = "RiskCategory";
     this.xrChart1.SeriesTemplate.ValueDataMembersSerializable = "Score";
     this.xrChart1.SizeF = new System.Drawing.SizeF(774.9999F, 200F);
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "ClarityDB_Connection";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     storedProcQuery1.Name = "spGetPatientDetails";
     queryParameter1.Name  = "@ParamPatientID";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("[Parameters.@PatientID]", typeof(int));
     storedProcQuery1.Parameters.Add(queryParameter1);
     storedProcQuery1.StoredProcName = "spGetPatientDetails";
     storedProcQuery2.Name           = "spGetPatientConsolidatedQuestionnaireList";
     queryParameter2.Name            = "@ParamPatientID";
     queryParameter2.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value           = new DevExpress.DataAccess.Expression("[Parameters.@PatientID]", typeof(int));
     queryParameter3.Name            = "@ParamHistoryList";
     queryParameter3.Type            = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value           = new DevExpress.DataAccess.Expression("True", typeof(bool));
     storedProcQuery2.Parameters.Add(queryParameter2);
     storedProcQuery2.Parameters.Add(queryParameter3);
     storedProcQuery2.StoredProcName = "spGetPatientConsolidatedQuestionnaireList";
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         storedProcQuery1,
         storedProcQuery2
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine1,
         this.ReportDate,
         this.ReportDateVal,
         this.xrPageInfo1
     });
     this.PageFooter.HeightF = 37.5F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrLine1
     //
     this.xrLine1.BorderColor   = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.xrLine1.BorderWidth   = 1F;
     this.xrLine1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.xrLine1.LineWidth     = 2;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(820F, 13.16666F);
     this.xrLine1.StylePriority.UseBorderColor = false;
     this.xrLine1.StylePriority.UseBorderWidth = false;
     this.xrLine1.StylePriority.UseForeColor   = false;
     //
     // ReportDate
     //
     this.ReportDate.Font                       = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ReportDate.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.ReportDate.LocationFloat              = new DevExpress.Utils.PointFloat(11.04164F, 13.16666F);
     this.ReportDate.Name                       = "ReportDate";
     this.ReportDate.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ReportDate.SizeF                      = new System.Drawing.SizeF(99.16666F, 23F);
     this.ReportDate.StylePriority.UseFont      = false;
     this.ReportDate.StylePriority.UseForeColor = false;
     this.ReportDate.Text                       = "Report Date";
     //
     // ReportDateVal
     //
     this.ReportDateVal.Font                       = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ReportDateVal.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.ReportDateVal.Format                     = "{0:MMMM d, yyyy h:mm tt}";
     this.ReportDateVal.LocationFloat              = new DevExpress.Utils.PointFloat(110.2084F, 13.16668F);
     this.ReportDateVal.Name                       = "ReportDateVal";
     this.ReportDateVal.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.ReportDateVal.PageInfo                   = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.ReportDateVal.SizeF                      = new System.Drawing.SizeF(176.4583F, 23F);
     this.ReportDateVal.StylePriority.UseFont      = false;
     this.ReportDateVal.StylePriority.UseForeColor = false;
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Font                       = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrPageInfo1.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.xrPageInfo1.Format                     = "Page {0}/{1}";
     this.xrPageInfo1.LocationFloat              = new DevExpress.Utils.PointFloat(742.2917F, 13.16666F);
     this.xrPageInfo1.Name                       = "xrPageInfo1";
     this.xrPageInfo1.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.SizeF                      = new System.Drawing.SizeF(67.70831F, 23F);
     this.xrPageInfo1.StylePriority.UseFont      = false;
     this.xrPageInfo1.StylePriority.UseForeColor = false;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.GroupHeader1,
         this.GroupFooter1
     });
     this.DetailReport.DataMember = "spGetPatientConsolidatedQuestionnaireList";
     this.DetailReport.DataSource = this.sqlDataSource1;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.Detail1.HeightF = 25F;
     this.Detail1.Name    = "Detail1";
     //
     // xrTable1
     //
     this.xrTable1.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(819.9999F, 25F);
     this.xrTable1.StylePriority.UseBorders = false;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.QuestionCell,
         this.AnswerCell
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // QuestionCell
     //
     this.QuestionCell.Borders = DevExpress.XtraPrinting.BorderSide.Left;
     this.QuestionCell.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientConsolidatedQuestionnaireList.QuestionText")
     });
     this.QuestionCell.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.QuestionCell.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.QuestionCell.Name      = "QuestionCell";
     this.QuestionCell.Padding   = new DevExpress.XtraPrinting.PaddingInfo(15, 0, 0, 0, 100F);
     this.QuestionCell.StylePriority.UseBorders   = false;
     this.QuestionCell.StylePriority.UseFont      = false;
     this.QuestionCell.StylePriority.UseForeColor = false;
     this.QuestionCell.StylePriority.UsePadding   = false;
     this.QuestionCell.Weight = 1.9483231668852394D;
     //
     // AnswerCell
     //
     this.AnswerCell.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)));
     this.AnswerCell.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientConsolidatedQuestionnaireList.AnswerText")
     });
     this.AnswerCell.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AnswerCell.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.AnswerCell.Name      = "AnswerCell";
     this.AnswerCell.Padding   = new DevExpress.XtraPrinting.PaddingInfo(15, 0, 0, 0, 100F);
     this.AnswerCell.StylePriority.UseBorders   = false;
     this.AnswerCell.StylePriority.UseFont      = false;
     this.AnswerCell.StylePriority.UseForeColor = false;
     this.AnswerCell.StylePriority.UsePadding   = false;
     this.AnswerCell.Weight = 1.0516768331147606D;
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2,
         this.lblRiskCategory,
         this.valRiskCategory,
         this.lblScore,
         this.valScore,
         this.lblTestDate,
         this.varTestDate,
         this.valQuestionnarieName
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("QuestionnaireName", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.HeightF      = 94.37498F;
     this.GroupHeader1.KeepTogether = true;
     this.GroupHeader1.Name         = "GroupHeader1";
     //
     // xrTable2
     //
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0.0001271566F, 67.29164F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(819.9999F, 25F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)
                                                                       | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2
     });
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.StylePriority.UseBorders = false;
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(15, 0, 0, 0, 100F);
     this.xrTableCell1.StylePriority.UseBorders       = false;
     this.xrTableCell1.StylePriority.UseFont          = false;
     this.xrTableCell1.StylePriority.UseForeColor     = false;
     this.xrTableCell1.StylePriority.UsePadding       = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text          = "Question";
     this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell1.Weight        = 1.9483231668852394D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Font      = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTableCell2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(15, 0, 0, 0, 100F);
     this.xrTableCell2.StylePriority.UseBorders       = false;
     this.xrTableCell2.StylePriority.UseFont          = false;
     this.xrTableCell2.StylePriority.UseForeColor     = false;
     this.xrTableCell2.StylePriority.UsePadding       = false;
     this.xrTableCell2.StylePriority.UseTextAlignment = false;
     this.xrTableCell2.Text          = "Answer";
     this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell2.Weight        = 1.0516768331147606D;
     //
     // lblRiskCategory
     //
     this.lblRiskCategory.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblRiskCategory.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.lblRiskCategory.LocationFloat              = new DevExpress.Utils.PointFloat(579.7916F, 33.87502F);
     this.lblRiskCategory.Name                       = "lblRiskCategory";
     this.lblRiskCategory.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblRiskCategory.SizeF                      = new System.Drawing.SizeF(116.8749F, 23F);
     this.lblRiskCategory.StylePriority.UseFont      = false;
     this.lblRiskCategory.StylePriority.UseForeColor = false;
     this.lblRiskCategory.Text                       = "Risk Category:";
     //
     // valRiskCategory
     //
     this.valRiskCategory.AutoWidth = true;
     this.valRiskCategory.CanShrink = true;
     this.valRiskCategory.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientConsolidatedQuestionnaireList.RiskCategory")
     });
     this.valRiskCategory.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valRiskCategory.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valRiskCategory.LocationFloat              = new DevExpress.Utils.PointFloat(696.6666F, 33.87502F);
     this.valRiskCategory.Name                       = "valRiskCategory";
     this.valRiskCategory.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valRiskCategory.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valRiskCategory.StylePriority.UseFont      = false;
     this.valRiskCategory.StylePriority.UseForeColor = false;
     //
     // lblScore
     //
     this.lblScore.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblScore.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.lblScore.LocationFloat              = new DevExpress.Utils.PointFloat(286.6665F, 33.87502F);
     this.lblScore.Name                       = "lblScore";
     this.lblScore.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblScore.SizeF                      = new System.Drawing.SizeF(51.87506F, 23F);
     this.lblScore.StylePriority.UseFont      = false;
     this.lblScore.StylePriority.UseForeColor = false;
     this.lblScore.Text                       = "Score:";
     //
     // valScore
     //
     this.valScore.AutoWidth = true;
     this.valScore.CanShrink = true;
     this.valScore.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientConsolidatedQuestionnaireList.Score")
     });
     this.valScore.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valScore.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.valScore.LocationFloat              = new DevExpress.Utils.PointFloat(338.5415F, 33.87502F);
     this.valScore.Name                       = "valScore";
     this.valScore.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valScore.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.valScore.StylePriority.UseFont      = false;
     this.valScore.StylePriority.UseForeColor = false;
     //
     // lblTestDate
     //
     this.lblTestDate.AutoWidth                  = true;
     this.lblTestDate.CanGrow                    = false;
     this.lblTestDate.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTestDate.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.lblTestDate.LocationFloat              = new DevExpress.Utils.PointFloat(0.0001271566F, 33.87502F);
     this.lblTestDate.Name                       = "lblTestDate";
     this.lblTestDate.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lblTestDate.SizeF                      = new System.Drawing.SizeF(78.95813F, 23F);
     this.lblTestDate.StylePriority.UseFont      = false;
     this.lblTestDate.StylePriority.UseForeColor = false;
     this.lblTestDate.Text                       = "Test Date:";
     //
     // varTestDate
     //
     this.varTestDate.AutoWidth = true;
     this.varTestDate.CanShrink = true;
     this.varTestDate.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientConsolidatedQuestionnaireList.CompletedDate")
     });
     this.varTestDate.Font                       = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.varTestDate.ForeColor                  = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(179)))), ((int)(((byte)(74)))));
     this.varTestDate.LocationFloat              = new DevExpress.Utils.PointFloat(78.95826F, 33.87502F);
     this.varTestDate.Name                       = "varTestDate";
     this.varTestDate.Padding                    = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.varTestDate.SizeF                      = new System.Drawing.SizeF(123.3333F, 23F);
     this.varTestDate.StylePriority.UseFont      = false;
     this.varTestDate.StylePriority.UseForeColor = false;
     //
     // valQuestionnarieName
     //
     this.valQuestionnarieName.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.valQuestionnarieName.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "spGetPatientConsolidatedQuestionnaireList.QuestionnaireName")
     });
     this.valQuestionnarieName.Font                           = new System.Drawing.Font("Times New Roman", 16.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valQuestionnarieName.ForeColor                      = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(43)))), ((int)(((byte)(124)))));
     this.valQuestionnarieName.LocationFloat                  = new DevExpress.Utils.PointFloat(3.051758E-05F, 0.583333F);
     this.valQuestionnarieName.Name                           = "valQuestionnarieName";
     this.valQuestionnarieName.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.valQuestionnarieName.SizeF                          = new System.Drawing.SizeF(819.9999F, 23F);
     this.valQuestionnarieName.StylePriority.UseBorders       = false;
     this.valQuestionnarieName.StylePriority.UseFont          = false;
     this.valQuestionnarieName.StylePriority.UseForeColor     = false;
     this.valQuestionnarieName.StylePriority.UseTextAlignment = false;
     this.valQuestionnarieName.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine2
     });
     this.GroupFooter1.HeightF         = 23.83331F;
     this.GroupFooter1.KeepTogether    = true;
     this.GroupFooter1.Name            = "GroupFooter1";
     this.GroupFooter1.RepeatEveryPage = true;
     //
     // xrLine2
     //
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(8.900961E-05F, 0F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(819.9999F, 2.99998F);
     //
     // clarityDBSet1
     //
     this.clarityDBSet1.DataSetName             = "ClarityDBSet";
     this.clarityDBSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // @PatientID
     //
     [email protected] = "Patient ID";
     [email protected]        = "@PatientID";
     [email protected]        = typeof(int);
     [email protected]   = "0";
     [email protected]     = false;
     //
     // ConsolidatedReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.PageFooter,
         this.DetailReport
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "spGetPatientDetails";
     this.DataSource = this.sqlDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(11, 19, 14, 16);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.@PatientID
     });
     this.Version = "17.1";
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sideBySideBarSeriesLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrChart1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clarityDBSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 38
0
    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    //protected override void Dispose(bool disposing)
    //{
    //    if (disposing && (components != null))
    //    {
    //        components.Dispose();
    //    }
    //    base.Dispose(disposing);
    //}

    #region Designer generated code

    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
        string resourceFileName = "rp_UngvienChiTiet.resx";

        this.Detail                          = new DevExpress.XtraReports.UI.DetailBand();
        this.TopMargin                       = new DevExpress.XtraReports.UI.TopMarginBand();
        this.BottomMargin                    = new DevExpress.XtraReports.UI.BottomMarginBand();
        this.ReportFooter                    = new DevExpress.XtraReports.UI.ReportFooterBand();
        this.xrl_footer2                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrtngayketxuat                  = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer3                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_footer1                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten3                        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten2                        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_ten1                        = new DevExpress.XtraReports.UI.XRLabel();
        this.PageFooter                      = new DevExpress.XtraReports.UI.PageFooterBand();
        this.xrPageInfo1                     = new DevExpress.XtraReports.UI.XRPageInfo();
        this.DetailReport                    = new DevExpress.XtraReports.UI.DetailReportBand();
        this.Detail1                         = new DevExpress.XtraReports.UI.DetailBand();
        this.xrsRe_KetQuaThiTuyen            = new DevExpress.XtraReports.UI.XRSubreport();
        this.sub_TuyenDung_UV_KetQuaThi1     = new sub_TuyenDung_UV_KetQuaThi();
        this.xrsRe_ChungChi                  = new DevExpress.XtraReports.UI.XRSubreport();
        this.sub_TuyenDung_UngVien_BC_CC1    = new sub_TuyenDung_UngVien_BC_CC();
        this.ReportHeader                    = new DevExpress.XtraReports.UI.ReportHeaderBand();
        this.sub_TuyenDung_UV_KinhNghiemCT1  = new sub_TuyenDung_UV_KinhNghiemCT();
        this.xrsRe_KinhNghiem                = new DevExpress.XtraReports.UI.XRSubreport();
        this.sub_TuyenDung_UngVien_TruongDT1 = new sub_TuyenDung_UngVien_TruongDT();
        this.xrsRe_TruongDaoTao              = new DevExpress.XtraReports.UI.XRSubreport();
        this.xrLabel3                        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel4                        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel5                        = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TEN_HETHONG                 = new DevExpress.XtraReports.UI.XRLabel();
        this.xrPictureBox1                   = new DevExpress.XtraReports.UI.XRPictureBox();
        this.xrl_NGAY_SINH                   = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_HO_TEN                      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_NOI_O_HIENNAY               = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_DAN_TOC                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel13                       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_HO_KHAU                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_TON_GIAO                    = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_DI_DONG                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_DT_NHA                      = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_EMAIL                       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_NGAYCAP_CMND                = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_SO_CMND                     = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_NOICAP_CMND                 = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_GIOI_TINH                   = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_NOI_SINH                    = new DevExpress.XtraReports.UI.XRLabel();
        this.xrc_NAM                         = new DevExpress.XtraReports.UI.XRCheckBox();
        this.xrc_NU                          = new DevExpress.XtraReports.UI.XRCheckBox();
        this.xrl_NGAYSINH                    = new DevExpress.XtraReports.UI.XRLabel();
        this.xrLabel15                       = new DevExpress.XtraReports.UI.XRLabel();
        this.xrl_Mail                        = new DevExpress.XtraReports.UI.XRLabel();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UV_KetQuaThi1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UngVien_BC_CC1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UV_KinhNghiemCT1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UngVien_TruongDT1)).BeginInit();
        ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
        //
        // Detail
        //
        this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_NOICAP_CMND,
            this.xrl_GIOI_TINH,
            this.xrl_NOI_SINH,
            this.xrl_EMAIL,
            this.xrl_NGAYCAP_CMND,
            this.xrl_SO_CMND,
            this.xrLabel15,
            this.xrl_Mail,
            this.xrc_NAM,
            this.xrc_NU,
            this.xrl_NGAYSINH,
            this.xrl_DT_NHA,
            this.xrPictureBox1,
            this.xrl_NGAY_SINH,
            this.xrl_HO_TEN,
            this.xrl_HO_KHAU,
            this.xrl_TON_GIAO,
            this.xrl_DI_DONG,
            this.xrl_NOI_O_HIENNAY,
            this.xrl_DAN_TOC,
            this.xrLabel13
        });
        this.Detail.HeightF       = 769F;
        this.Detail.Name          = "Detail";
        this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // TopMargin
        //
        this.TopMargin.HeightF       = 33F;
        this.TopMargin.Name          = "TopMargin";
        this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // BottomMargin
        //
        this.BottomMargin.HeightF       = 47F;
        this.BottomMargin.Name          = "BottomMargin";
        this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
        this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
        //
        // ReportFooter
        //
        this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrl_footer2,
            this.xrtngayketxuat,
            this.xrl_footer3,
            this.xrl_footer1,
            this.xrl_ten3,
            this.xrl_ten2,
            this.xrl_ten1
        });
        this.ReportFooter.HeightF = 196F;
        this.ReportFooter.Name    = "ReportFooter";
        //
        // xrl_footer2
        //
        this.xrl_footer2.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer2.LocationFloat                  = new DevExpress.Utils.PointFloat(175F, 50F);
        this.xrl_footer2.Name                           = "xrl_footer2";
        this.xrl_footer2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer2.SizeF                          = new System.Drawing.SizeF(222.7652F, 23F);
        this.xrl_footer2.StylePriority.UseFont          = false;
        this.xrl_footer2.StylePriority.UseTextAlignment = false;
        this.xrl_footer2.Text                           = "KẾ TOÁN TRƯỞNG";
        this.xrl_footer2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrtngayketxuat
        //
        this.xrtngayketxuat.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
        this.xrtngayketxuat.LocationFloat                  = new DevExpress.Utils.PointFloat(385.9165F, 27.00001F);
        this.xrtngayketxuat.Name                           = "xrtngayketxuat";
        this.xrtngayketxuat.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrtngayketxuat.SizeF                          = new System.Drawing.SizeF(265.0835F, 23F);
        this.xrtngayketxuat.StylePriority.UseFont          = false;
        this.xrtngayketxuat.StylePriority.UseTextAlignment = false;
        this.xrtngayketxuat.Text                           = ", ngày 15 tháng 4 năm 2013";
        this.xrtngayketxuat.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_footer3
        //
        this.xrl_footer3.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer3.LocationFloat                  = new DevExpress.Utils.PointFloat(413F, 50F);
        this.xrl_footer3.Name                           = "xrl_footer3";
        this.xrl_footer3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer3.SizeF                          = new System.Drawing.SizeF(238F, 23F);
        this.xrl_footer3.StylePriority.UseFont          = false;
        this.xrl_footer3.StylePriority.UseTextAlignment = false;
        this.xrl_footer3.Text                           = "PHÒNG HCNS";
        this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_footer1
        //
        this.xrl_footer1.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
        this.xrl_footer1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 50F);
        this.xrl_footer1.Name                           = "xrl_footer1";
        this.xrl_footer1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_footer1.SizeF                          = new System.Drawing.SizeF(161.9514F, 23F);
        this.xrl_footer1.StylePriority.UseFont          = false;
        this.xrl_footer1.StylePriority.UseTextAlignment = false;
        this.xrl_footer1.Text                           = "NGƯỜI LẬP";
        this.xrl_footer1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_ten3
        //
        this.xrl_ten3.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_ten3.LocationFloat                  = new DevExpress.Utils.PointFloat(413F, 150F);
        this.xrl_ten3.Name                           = "xrl_ten3";
        this.xrl_ten3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten3.SizeF                          = new System.Drawing.SizeF(238F, 23F);
        this.xrl_ten3.StylePriority.UseFont          = false;
        this.xrl_ten3.StylePriority.UseTextAlignment = false;
        this.xrl_ten3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_ten2
        //
        this.xrl_ten2.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_ten2.LocationFloat                  = new DevExpress.Utils.PointFloat(175F, 150F);
        this.xrl_ten2.Name                           = "xrl_ten2";
        this.xrl_ten2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten2.SizeF                          = new System.Drawing.SizeF(222.7653F, 23F);
        this.xrl_ten2.StylePriority.UseFont          = false;
        this.xrl_ten2.StylePriority.UseTextAlignment = false;
        this.xrl_ten2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_ten1
        //
        this.xrl_ten1.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrl_ten1.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 150F);
        this.xrl_ten1.Name                           = "xrl_ten1";
        this.xrl_ten1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_ten1.SizeF                          = new System.Drawing.SizeF(161.9514F, 23F);
        this.xrl_ten1.StylePriority.UseFont          = false;
        this.xrl_ten1.StylePriority.UseTextAlignment = false;
        this.xrl_ten1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // PageFooter
        //
        this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrPageInfo1
        });
        this.PageFooter.Expanded = false;
        this.PageFooter.Name     = "PageFooter";
        //
        // xrPageInfo1
        //
        this.xrPageInfo1.Font                           = new System.Drawing.Font("Times New Roman", 11F);
        this.xrPageInfo1.Format                         = "Trang {0} của {1}";
        this.xrPageInfo1.LocationFloat                  = new DevExpress.Utils.PointFloat(773.9583F, 37.5F);
        this.xrPageInfo1.Name                           = "xrPageInfo1";
        this.xrPageInfo1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrPageInfo1.SizeF                          = new System.Drawing.SizeF(126.0417F, 23.00001F);
        this.xrPageInfo1.StylePriority.UseFont          = false;
        this.xrPageInfo1.StylePriority.UseTextAlignment = false;
        this.xrPageInfo1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
        //
        // DetailReport
        //
        this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail1
        });
        this.DetailReport.Level = 0;
        this.DetailReport.Name  = "DetailReport";
        //
        // Detail1
        //
        this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrsRe_KetQuaThiTuyen,
            this.xrsRe_KinhNghiem,
            this.xrsRe_ChungChi,
            this.xrsRe_TruongDaoTao
        });
        this.Detail1.HeightF = 98F;
        this.Detail1.Name    = "Detail1";
        //
        // xrsRe_KetQuaThiTuyen
        //
        this.xrsRe_KetQuaThiTuyen.LocationFloat = new DevExpress.Utils.PointFloat(0F, 71.00004F);
        this.xrsRe_KetQuaThiTuyen.Name          = "xrsRe_KetQuaThiTuyen";
        this.xrsRe_KetQuaThiTuyen.ReportSource  = this.sub_TuyenDung_UV_KetQuaThi1;
        this.xrsRe_KetQuaThiTuyen.SizeF         = new System.Drawing.SizeF(651F, 26.99996F);
        //
        // xrsRe_ChungChi
        //
        this.xrsRe_ChungChi.LocationFloat = new DevExpress.Utils.PointFloat(0F, 22.99995F);
        this.xrsRe_ChungChi.Name          = "xrsRe_ChungChi";
        this.xrsRe_ChungChi.ReportSource  = this.sub_TuyenDung_UngVien_BC_CC1;
        this.xrsRe_ChungChi.SizeF         = new System.Drawing.SizeF(651F, 23F);
        //
        // ReportHeader
        //
        this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
            this.xrLabel5,
            this.xrl_TEN_HETHONG,
            this.xrLabel3,
            this.xrLabel4
        });
        this.ReportHeader.HeightF = 133.5F;
        this.ReportHeader.Name    = "ReportHeader";
        //
        // xrsRe_KinhNghiem
        //
        this.xrsRe_KinhNghiem.LocationFloat = new DevExpress.Utils.PointFloat(0F, 45.99991F);
        this.xrsRe_KinhNghiem.Name          = "xrsRe_KinhNghiem";
        this.xrsRe_KinhNghiem.ReportSource  = this.sub_TuyenDung_UV_KinhNghiemCT1;
        this.xrsRe_KinhNghiem.SizeF         = new System.Drawing.SizeF(651F, 25.00009F);
        //
        // xrsRe_TruongDaoTao
        //
        this.xrsRe_TruongDaoTao.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrsRe_TruongDaoTao.Name          = "xrsRe_TruongDaoTao";
        this.xrsRe_TruongDaoTao.ReportSource  = this.sub_TuyenDung_UngVien_TruongDT1;
        this.xrsRe_TruongDaoTao.SizeF         = new System.Drawing.SizeF(650.9999F, 23F);
        //
        // xrLabel3
        //
        this.xrLabel3.Font                           = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Bold);
        this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrLabel3.Name                           = "xrLabel3";
        this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel3.SizeF                          = new System.Drawing.SizeF(751F, 23F);
        this.xrLabel3.StylePriority.UseFont          = false;
        this.xrLabel3.StylePriority.UseTextAlignment = false;
        this.xrLabel3.Text                           = "CỘNG HÒA XÃ HỘI CHỦ NGHĨA VIỆT NAM";
        this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrLabel4
        //
        this.xrLabel4.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrLabel4.Font                           = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Bold);
        this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 25F);
        this.xrLabel4.Name                           = "xrLabel4";
        this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel4.SizeF                          = new System.Drawing.SizeF(751F, 20.99998F);
        this.xrLabel4.StylePriority.UseBorders       = false;
        this.xrLabel4.StylePriority.UseFont          = false;
        this.xrLabel4.StylePriority.UseTextAlignment = false;
        this.xrLabel4.Text                           = "Độc lập - Tự do -Hạnh phúc";
        this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrLabel5
        //
        this.xrLabel5.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
        this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 87.5F);
        this.xrLabel5.Name                           = "xrLabel5";
        this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel5.SizeF                          = new System.Drawing.SizeF(751F, 20.99996F);
        this.xrLabel5.StylePriority.UseBorders       = false;
        this.xrLabel5.StylePriority.UseFont          = false;
        this.xrLabel5.StylePriority.UseTextAlignment = false;
        this.xrLabel5.Text                           = "HỒ SỨNG VIÊN";
        this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrl_TEN_HETHONG
        //
        this.xrl_TEN_HETHONG.Borders                        = DevExpress.XtraPrinting.BorderSide.None;
        this.xrl_TEN_HETHONG.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Italic);
        this.xrl_TEN_HETHONG.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 112.5F);
        this.xrl_TEN_HETHONG.Name                           = "xrl_TEN_HETHONG";
        this.xrl_TEN_HETHONG.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TEN_HETHONG.SizeF                          = new System.Drawing.SizeF(751F, 20.99998F);
        this.xrl_TEN_HETHONG.StylePriority.UseBorders       = false;
        this.xrl_TEN_HETHONG.StylePriority.UseFont          = false;
        this.xrl_TEN_HETHONG.StylePriority.UseTextAlignment = false;
        this.xrl_TEN_HETHONG.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
        //
        // xrPictureBox1
        //
        this.xrPictureBox1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                             | DevExpress.XtraPrinting.BorderSide.Right)
                                                                            | DevExpress.XtraPrinting.BorderSide.Bottom)));
        this.xrPictureBox1.LocationFloat            = new DevExpress.Utils.PointFloat(615.5803F, 22.99999F);
        this.xrPictureBox1.Name                     = "xrPictureBox1";
        this.xrPictureBox1.SizeF                    = new System.Drawing.SizeF(135.4197F, 161F);
        this.xrPictureBox1.StylePriority.UseBorders = false;
        //
        // xrl_NGAY_SINH
        //
        this.xrl_NGAY_SINH.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_NGAY_SINH.LocationFloat                  = new DevExpress.Utils.PointFloat(1.041667F, 45.99997F);
        this.xrl_NGAY_SINH.Name                           = "xrl_NGAY_SINH";
        this.xrl_NGAY_SINH.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_NGAY_SINH.SizeF                          = new System.Drawing.SizeF(100.8333F, 23F);
        this.xrl_NGAY_SINH.StylePriority.UseFont          = false;
        this.xrl_NGAY_SINH.StylePriority.UseTextAlignment = false;
        this.xrl_NGAY_SINH.Text                           = "2. Ngày sinh:  ";
        this.xrl_NGAY_SINH.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_HO_TEN
        //
        this.xrl_HO_TEN.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_HO_TEN.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 22.99999F);
        this.xrl_HO_TEN.Name                           = "xrl_HO_TEN";
        this.xrl_HO_TEN.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_HO_TEN.SizeF                          = new System.Drawing.SizeF(615.5803F, 23F);
        this.xrl_HO_TEN.StylePriority.UseFont          = false;
        this.xrl_HO_TEN.StylePriority.UseTextAlignment = false;
        this.xrl_HO_TEN.Text                           = "1. Họ và tên:  ";
        this.xrl_HO_TEN.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_NOI_O_HIENNAY
        //
        this.xrl_NOI_O_HIENNAY.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_NOI_O_HIENNAY.LocationFloat                  = new DevExpress.Utils.PointFloat(1.041667F, 138F);
        this.xrl_NOI_O_HIENNAY.Name                           = "xrl_NOI_O_HIENNAY";
        this.xrl_NOI_O_HIENNAY.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_NOI_O_HIENNAY.SizeF                          = new System.Drawing.SizeF(614.5387F, 23F);
        this.xrl_NOI_O_HIENNAY.StylePriority.UseFont          = false;
        this.xrl_NOI_O_HIENNAY.StylePriority.UseTextAlignment = false;
        this.xrl_NOI_O_HIENNAY.Text                           = "11. Nơi ở hiện nay: ";
        this.xrl_NOI_O_HIENNAY.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_DAN_TOC
        //
        this.xrl_DAN_TOC.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_DAN_TOC.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 92.00001F);
        this.xrl_DAN_TOC.Name                           = "xrl_DAN_TOC";
        this.xrl_DAN_TOC.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_DAN_TOC.SizeF                          = new System.Drawing.SizeF(337.4999F, 23F);
        this.xrl_DAN_TOC.StylePriority.UseFont          = false;
        this.xrl_DAN_TOC.StylePriority.UseTextAlignment = false;
        this.xrl_DAN_TOC.Text                           = "7. Dân tộc: ";
        this.xrl_DAN_TOC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrLabel13
        //
        this.xrLabel13.Font                  = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
        this.xrLabel13.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
        this.xrLabel13.Name                  = "xrLabel13";
        this.xrLabel13.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel13.SizeF                 = new System.Drawing.SizeF(751F, 23F);
        this.xrLabel13.StylePriority.UseFont = false;
        this.xrLabel13.Text                  = "I. THÔNG TIN HỒ SƠ";
        //
        // xrl_HO_KHAU
        //
        this.xrl_HO_KHAU.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_HO_KHAU.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 115F);
        this.xrl_HO_KHAU.Name                           = "xrl_HO_KHAU";
        this.xrl_HO_KHAU.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_HO_KHAU.SizeF                          = new System.Drawing.SizeF(615.5804F, 23.00001F);
        this.xrl_HO_KHAU.StylePriority.UseFont          = false;
        this.xrl_HO_KHAU.StylePriority.UseTextAlignment = false;
        this.xrl_HO_KHAU.Text                           = "10. Hộ khẩu thường trú: ";
        this.xrl_HO_KHAU.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_TON_GIAO
        //
        this.xrl_TON_GIAO.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_TON_GIAO.LocationFloat                  = new DevExpress.Utils.PointFloat(337.5F, 92.00007F);
        this.xrl_TON_GIAO.Name                           = "xrl_TON_GIAO";
        this.xrl_TON_GIAO.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_TON_GIAO.SizeF                          = new System.Drawing.SizeF(278.0804F, 22.99994F);
        this.xrl_TON_GIAO.StylePriority.UseFont          = false;
        this.xrl_TON_GIAO.StylePriority.UseTextAlignment = false;
        this.xrl_TON_GIAO.Text                           = "8.Tôn giáo: ";
        this.xrl_TON_GIAO.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_DI_DONG
        //
        this.xrl_DI_DONG.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_DI_DONG.LocationFloat                  = new DevExpress.Utils.PointFloat(125F, 161F);
        this.xrl_DI_DONG.Name                           = "xrl_DI_DONG";
        this.xrl_DI_DONG.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_DI_DONG.SizeF                          = new System.Drawing.SizeF(212.4999F, 23F);
        this.xrl_DI_DONG.StylePriority.UseFont          = false;
        this.xrl_DI_DONG.StylePriority.UseTextAlignment = false;
        this.xrl_DI_DONG.Text                           = "DĐ: ";
        this.xrl_DI_DONG.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_DT_NHA
        //
        this.xrl_DT_NHA.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_DT_NHA.LocationFloat                  = new DevExpress.Utils.PointFloat(337.5F, 161.0001F);
        this.xrl_DT_NHA.Name                           = "xrl_DT_NHA";
        this.xrl_DT_NHA.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_DT_NHA.SizeF                          = new System.Drawing.SizeF(278.0804F, 23F);
        this.xrl_DT_NHA.StylePriority.UseFont          = false;
        this.xrl_DT_NHA.StylePriority.UseTextAlignment = false;
        this.xrl_DT_NHA.Text                           = "NR: ";
        this.xrl_DT_NHA.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_EMAIL
        //
        this.xrl_EMAIL.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_EMAIL.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 184F);
        this.xrl_EMAIL.Name                           = "xrl_EMAIL";
        this.xrl_EMAIL.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_EMAIL.SizeF                          = new System.Drawing.SizeF(124.4087F, 23.00002F);
        this.xrl_EMAIL.StylePriority.UseFont          = false;
        this.xrl_EMAIL.StylePriority.UseTextAlignment = false;
        this.xrl_EMAIL.Text                           = "13. Email:                    ";
        this.xrl_EMAIL.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_NGAYCAP_CMND
        //
        this.xrl_NGAYCAP_CMND.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Italic);
        this.xrl_NGAYCAP_CMND.LocationFloat                  = new DevExpress.Utils.PointFloat(489.3752F, 207.0001F);
        this.xrl_NGAYCAP_CMND.Name                           = "xrl_NGAYCAP_CMND";
        this.xrl_NGAYCAP_CMND.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_NGAYCAP_CMND.SizeF                          = new System.Drawing.SizeF(261.6246F, 23F);
        this.xrl_NGAYCAP_CMND.StylePriority.UseFont          = false;
        this.xrl_NGAYCAP_CMND.StylePriority.UseTextAlignment = false;
        this.xrl_NGAYCAP_CMND.Text                           = "Ngày cấp: ";
        this.xrl_NGAYCAP_CMND.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_SO_CMND
        //
        this.xrl_SO_CMND.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_SO_CMND.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 207F);
        this.xrl_SO_CMND.Name                           = "xrl_SO_CMND";
        this.xrl_SO_CMND.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_SO_CMND.SizeF                          = new System.Drawing.SizeF(276.6668F, 23.00003F);
        this.xrl_SO_CMND.StylePriority.UseFont          = false;
        this.xrl_SO_CMND.StylePriority.UseTextAlignment = false;
        this.xrl_SO_CMND.Text                           = "14. Số CMTND: ";
        this.xrl_SO_CMND.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_NOICAP_CMND
        //
        this.xrl_NOICAP_CMND.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Italic);
        this.xrl_NOICAP_CMND.LocationFloat                  = new DevExpress.Utils.PointFloat(276.6668F, 207F);
        this.xrl_NOICAP_CMND.Name                           = "xrl_NOICAP_CMND";
        this.xrl_NOICAP_CMND.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_NOICAP_CMND.SizeF                          = new System.Drawing.SizeF(212.7084F, 23.00003F);
        this.xrl_NOICAP_CMND.StylePriority.UseFont          = false;
        this.xrl_NOICAP_CMND.StylePriority.UseTextAlignment = false;
        this.xrl_NOICAP_CMND.Text                           = "Nơi cấp: ";
        this.xrl_NOICAP_CMND.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_GIOI_TINH
        //
        this.xrl_GIOI_TINH.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_GIOI_TINH.LocationFloat                  = new DevExpress.Utils.PointFloat(337.5F, 45.99997F);
        this.xrl_GIOI_TINH.Name                           = "xrl_GIOI_TINH";
        this.xrl_GIOI_TINH.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_GIOI_TINH.SizeF                          = new System.Drawing.SizeF(131.8304F, 23.00002F);
        this.xrl_GIOI_TINH.StylePriority.UseFont          = false;
        this.xrl_GIOI_TINH.StylePriority.UseTextAlignment = false;
        this.xrl_GIOI_TINH.Text                           = "3. Giới tính: (v)";
        this.xrl_GIOI_TINH.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_NOI_SINH
        //
        this.xrl_NOI_SINH.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_NOI_SINH.LocationFloat                  = new DevExpress.Utils.PointFloat(1.041667F, 68.99999F);
        this.xrl_NOI_SINH.Name                           = "xrl_NOI_SINH";
        this.xrl_NOI_SINH.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_NOI_SINH.SizeF                          = new System.Drawing.SizeF(614.5386F, 23.00002F);
        this.xrl_NOI_SINH.StylePriority.UseFont          = false;
        this.xrl_NOI_SINH.StylePriority.UseTextAlignment = false;
        this.xrl_NOI_SINH.Text                           = "6. Nơi sinh: ";
        this.xrl_NOI_SINH.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrc_NAM
        //
        this.xrc_NAM.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrc_NAM.LocationFloat                  = new DevExpress.Utils.PointFloat(469.3303F, 45.99997F);
        this.xrc_NAM.Name                           = "xrc_NAM";
        this.xrc_NAM.SizeF                          = new System.Drawing.SizeF(71.25F, 23F);
        this.xrc_NAM.StylePriority.UseFont          = false;
        this.xrc_NAM.StylePriority.UseTextAlignment = false;
        this.xrc_NAM.Text                           = "Nam";
        this.xrc_NAM.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrc_NU
        //
        this.xrc_NU.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrc_NU.LocationFloat                  = new DevExpress.Utils.PointFloat(544.3303F, 45.99997F);
        this.xrc_NU.Name                           = "xrc_NU";
        this.xrc_NU.SizeF                          = new System.Drawing.SizeF(71.25F, 23F);
        this.xrc_NU.StylePriority.UseFont          = false;
        this.xrc_NU.StylePriority.UseTextAlignment = false;
        this.xrc_NU.Text                           = "Nữ";
        this.xrc_NU.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
        //
        // xrl_NGAYSINH
        //
        this.xrl_NGAYSINH.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_NGAYSINH.LocationFloat                  = new DevExpress.Utils.PointFloat(101.875F, 45.99997F);
        this.xrl_NGAYSINH.Name                           = "xrl_NGAYSINH";
        this.xrl_NGAYSINH.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_NGAYSINH.SizeF                          = new System.Drawing.SizeF(235.625F, 23F);
        this.xrl_NGAYSINH.StylePriority.UseFont          = false;
        this.xrl_NGAYSINH.StylePriority.UseTextAlignment = false;
        this.xrl_NGAYSINH.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrLabel15
        //
        this.xrLabel15.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrLabel15.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 161F);
        this.xrLabel15.Name                           = "xrLabel15";
        this.xrLabel15.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrLabel15.SizeF                          = new System.Drawing.SizeF(125F, 23F);
        this.xrLabel15.StylePriority.UseFont          = false;
        this.xrLabel15.StylePriority.UseTextAlignment = false;
        this.xrLabel15.Text                           = "12. Điện thoại:  ";
        this.xrLabel15.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // xrl_Mail
        //
        this.xrl_Mail.Font                           = new System.Drawing.Font("Times New Roman", 12F);
        this.xrl_Mail.LocationFloat                  = new DevExpress.Utils.PointFloat(124.4087F, 184F);
        this.xrl_Mail.Name                           = "xrl_Mail";
        this.xrl_Mail.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
        this.xrl_Mail.SizeF                          = new System.Drawing.SizeF(626.5912F, 23F);
        this.xrl_Mail.StylePriority.UseFont          = false;
        this.xrl_Mail.StylePriority.UseTextAlignment = false;
        this.xrl_Mail.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
        //
        // rp_UngvienChiTiet
        //
        this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
            this.Detail,
            this.TopMargin,
            this.BottomMargin,
            this.ReportHeader,
            this.ReportFooter,
            this.PageFooter,
            this.DetailReport
        });
        this.Margins = new System.Drawing.Printing.Margins(50, 49, 33, 47);
        this.Version = "10.1";
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UV_KetQuaThi1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UngVien_BC_CC1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UV_KinhNghiemCT1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this.sub_TuyenDung_UngVien_TruongDT1)).EndInit();
        ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
    }
Ejemplo n.º 39
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
     this.topMarginBand1      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.detailBand1         = new DevExpress.XtraReports.UI.DetailBand();
     this.bottomMarginBand1   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.bindingSource1      = new System.Windows.Forms.BindingSource(this.components);
     this.xrTable2            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow4         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10       = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12       = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14       = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16       = new DevExpress.XtraReports.UI.XRTableCell();
     this.ReportHeader        = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel5            = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1            = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2            = new DevExpress.XtraReports.UI.XRLabel();
     this.PageHeader          = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrTable1            = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3         = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell7        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9        = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11       = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13       = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15       = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupFooter1        = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.txtDiscount         = new DevExpress.XtraReports.UI.XRLabel();
     this.txtTotal            = new DevExpress.XtraReports.UI.XRLabel();
     this.parameterBranchName = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // topMarginBand1
     //
     this.topMarginBand1.HeightF = 128.5417F;
     this.topMarginBand1.Name    = "topMarginBand1";
     //
     // detailBand1
     //
     this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.detailBand1.HeightF = 23F;
     this.detailBand1.Name    = "detailBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.HeightF = 100F;
     this.bottomMarginBand1.Name    = "bottomMarginBand1";
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(DataAccess.vw_SaleReport);
     //
     // xrTable2
     //
     this.xrTable2.AnchorVertical = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.xrTable2.Borders        = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(146.869F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(356.2621F, 23F);
     this.xrTable2.StylePriority.UseBorders = false;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell10,
         this.xrTableCell12,
         this.xrTableCell14,
         this.xrTableCell16
     });
     this.xrTableRow4.Name   = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell8.CanGrow = false;
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Discount")
     });
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseBorders       = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell8.Weight        = 61.423651208106776D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell10.CanGrow = false;
     this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Total")
     });
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseBorders       = false;
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell10.Weight        = 62.593505975673111D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell12.CanGrow = false;
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "UserName")
     });
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.StylePriority.UseBorders       = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell12.Weight        = 58.034427580364564D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell14.CanGrow = false;
     this.xrTableCell14.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "ID")
     });
     this.xrTableCell14.Font      = new System.Drawing.Font("Times New Roman", 10F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))));
     this.xrTableCell14.ForeColor = System.Drawing.SystemColors.HotTrack;
     this.xrTableCell14.Name      = "xrTableCell14";
     this.xrTableCell14.StylePriority.UseBorders       = false;
     this.xrTableCell14.StylePriority.UseFont          = false;
     this.xrTableCell14.StylePriority.UseForeColor     = false;
     this.xrTableCell14.StylePriority.UseTextAlignment = false;
     this.xrTableCell14.TextAlignment       = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell14.Weight              = 36.1277270966993D;
     this.xrTableCell14.PreviewDoubleClick += new DevExpress.XtraReports.UI.PreviewMouseEventHandler(this.xrTableCell14_PreviewDoubleClick);
     //
     // xrTableCell16
     //
     this.xrTableCell16.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell16.CanGrow = false;
     this.xrTableCell16.Name    = "xrTableCell16";
     this.xrTableCell16.StylePriority.UseBorders       = false;
     this.xrTableCell16.StylePriority.UseTextAlignment = false;
     xrSummary1.Func                  = DevExpress.XtraReports.UI.SummaryFunc.RecordNumber;
     xrSummary1.Running               = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.xrTableCell16.Summary       = xrSummary1;
     this.xrTableCell16.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell16.Weight        = 19.45238055660441D;
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel5,
         this.xrLabel1,
         this.xrLabel2
     });
     this.ReportHeader.HeightF = 91.58334F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding(this.parameterBranchName, "Text", "")
     });
     this.xrLabel5.Font                           = new System.Drawing.Font("Times New Roman", 20F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.ForeColor                      = System.Drawing.Color.Maroon;
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(289.9291F, 52.00002F);
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(105.2236F, 35F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseForeColor     = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Simplified Arabic", 17F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(346.0959F, 10.00001F);
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(192.3957F, 35F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "   ملخص المبيعات ليوم";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Date", "{0:dd-MMM-yyyy}")
     });
     this.xrLabel2.Font                           = new System.Drawing.Font("Times New Roman", 16F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.ForeColor                      = System.Drawing.Color.Maroon;
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(211.5064F, 10.00001F);
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(126.2917F, 35F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseForeColor     = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1
     });
     this.PageHeader.HeightF = 41.66667F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrTable1
     //
     this.xrTable1.AnchorVertical = DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom;
     this.xrTable1.Borders        = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(146.869F, 0F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(356.262F, 40F);
     this.xrTable1.StylePriority.UseBorderColor   = false;
     this.xrTable1.StylePriority.UseBorders       = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell7,
         this.xrTableCell9,
         this.xrTableCell11,
         this.xrTableCell13,
         this.xrTableCell15
     });
     this.xrTableRow3.Name   = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.BackColor = System.Drawing.Color.Transparent;
     this.xrTableCell7.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell7.CanGrow = false;
     this.xrTableCell7.Font    = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell7.Name    = "xrTableCell7";
     this.xrTableCell7.StylePriority.UseBackColor     = false;
     this.xrTableCell7.StylePriority.UseBorders       = false;
     this.xrTableCell7.StylePriority.UseFont          = false;
     this.xrTableCell7.StylePriority.UseTextAlignment = false;
     this.xrTableCell7.Text          = "التخفيض";
     this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell7.Weight        = 39.1868675165632D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.BackColor = System.Drawing.Color.Transparent;
     this.xrTableCell9.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell9.CanGrow = false;
     this.xrTableCell9.Font    = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell9.Name    = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseBackColor     = false;
     this.xrTableCell9.StylePriority.UseBorders       = false;
     this.xrTableCell9.StylePriority.UseFont          = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     this.xrTableCell9.Text          = "قيمة الفاتورة";
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell9.Weight        = 39.933223411630919D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.BackColor = System.Drawing.Color.Transparent;
     this.xrTableCell11.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell11.CanGrow = false;
     this.xrTableCell11.Font    = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell11.Name    = "xrTableCell11";
     this.xrTableCell11.StylePriority.UseBackColor     = false;
     this.xrTableCell11.StylePriority.UseBorders       = false;
     this.xrTableCell11.StylePriority.UseFont          = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     this.xrTableCell11.Text          = "الموظف";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell11.Weight        = 37.024601339163745D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.BackColor = System.Drawing.Color.Transparent;
     this.xrTableCell13.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell13.CanGrow = false;
     this.xrTableCell13.Font    = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell13.Name    = "xrTableCell13";
     this.xrTableCell13.StylePriority.UseBackColor     = false;
     this.xrTableCell13.StylePriority.UseBorders       = false;
     this.xrTableCell13.StylePriority.UseFont          = false;
     this.xrTableCell13.StylePriority.UseTextAlignment = false;
     this.xrTableCell13.Text          = "رقم الفاتورة";
     this.xrTableCell13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell13.Weight        = 23.048650671731213D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell15.CanGrow   = false;
     this.xrTableCell15.Font      = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
     this.xrTableCell15.ForeColor = System.Drawing.Color.Maroon;
     this.xrTableCell15.Name      = "xrTableCell15";
     this.xrTableCell15.StylePriority.UseBorders   = false;
     this.xrTableCell15.StylePriority.UseFont      = false;
     this.xrTableCell15.StylePriority.UseForeColor = false;
     this.xrTableCell15.Text   = "#";
     this.xrTableCell15.Weight = 12.410173004272753D;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.txtDiscount,
         this.txtTotal
     });
     this.GroupFooter1.HeightF = 23F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // txtDiscount
     //
     this.txtDiscount.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Discount")
     });
     this.txtDiscount.LocationFloat = new DevExpress.Utils.PointFloat(146.869F, 0F);
     this.txtDiscount.Name          = "txtDiscount";
     this.txtDiscount.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.txtDiscount.SizeF         = new System.Drawing.SizeF(92.08752F, 23F);
     this.txtDiscount.StylePriority.UseTextAlignment = false;
     xrSummary2.IgnoreNullValues    = true;
     xrSummary2.Running             = DevExpress.XtraReports.UI.SummaryRunning.Page;
     this.txtDiscount.Summary       = xrSummary2;
     this.txtDiscount.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // txtTotal
     //
     this.txtTotal.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Total")
     });
     this.txtTotal.LocationFloat = new DevExpress.Utils.PointFloat(238.9566F, 0F);
     this.txtTotal.Name          = "txtTotal";
     this.txtTotal.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.txtTotal.SizeF         = new System.Drawing.SizeF(93.84143F, 23F);
     this.txtTotal.StylePriority.UseTextAlignment = false;
     xrSummary3.IgnoreNullValues = true;
     xrSummary3.Running          = DevExpress.XtraReports.UI.SummaryRunning.Report;
     this.txtTotal.Summary       = xrSummary3;
     this.txtTotal.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // parameterBranchName
     //
     this.parameterBranchName.Description = "Branch Name";
     this.parameterBranchName.Name        = "parameterBranchName";
     //
     // SaleSummaryReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.topMarginBand1,
         this.detailBand1,
         this.bottomMarginBand1,
         this.ReportHeader,
         this.PageHeader,
         this.GroupFooter1
     });
     this.DataSource = this.bindingSource1;
     this.Margins    = new System.Drawing.Printing.Margins(100, 100, 129, 100);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.parameterBranchName
     });
     this.RequestParameters = false;
     this.Version           = "17.1";
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1      = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table3            = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column4           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4 = new DevExpress.DataAccess.Sql.ColumnExpression();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(TestReport));
     this.TopMargin       = new DevExpress.XtraReports.UI.TopMarginBand();
     this.ReportHeader    = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.label1          = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupHeader1    = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.table1          = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell3      = new DevExpress.XtraReports.UI.XRTableCell();
     this.Detail          = new DevExpress.XtraReports.UI.DetailBand();
     this.table2          = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell4      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell5      = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell6      = new DevExpress.XtraReports.UI.XRTableCell();
     this.pictureBox1     = new DevExpress.XtraReports.UI.XRPictureBox();
     this.BottomMargin    = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.pageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.pageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.Title           = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailCaption1  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData1     = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailData3_Odd = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo        = new DevExpress.XtraReports.UI.XRControlStyle();
     this.sqlDataSource1  = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Name = "TopMargin";
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label1
     });
     this.ReportHeader.HeightF = 60F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // label1
     //
     this.label1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.label1.Name          = "label1";
     this.label1.SizeF         = new System.Drawing.SizeF(638F, 24.19433F);
     this.label1.StyleName     = "Title";
     this.label1.Text          = "NWind Categories";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table1
     });
     this.GroupHeader1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader1.HeightF    = 28F;
     this.GroupHeader1.Name       = "GroupHeader1";
     //
     // table1
     //
     this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.table1.Name          = "table1";
     this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow1
     });
     this.table1.SizeF = new System.Drawing.SizeF(650F, 28F);
     //
     // tableRow1
     //
     this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell1,
         this.tableCell2,
         this.tableCell3
     });
     this.tableRow1.Name   = "tableRow1";
     this.tableRow1.Weight = 1D;
     //
     // tableCell1
     //
     this.tableCell1.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.tableCell1.Name      = "tableCell1";
     this.tableCell1.StyleName = "DetailCaption1";
     this.tableCell1.StylePriority.UseBorders       = false;
     this.tableCell1.StylePriority.UseTextAlignment = false;
     this.tableCell1.Text          = "Category ID";
     this.tableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.tableCell1.Weight        = 0.34163161057692309D;
     //
     // tableCell2
     //
     this.tableCell2.Name      = "tableCell2";
     this.tableCell2.StyleName = "DetailCaption1";
     this.tableCell2.Text      = "Category Name";
     this.tableCell2.Weight    = 0.427702871469351D;
     //
     // tableCell3
     //
     this.tableCell3.Name      = "tableCell3";
     this.tableCell3.StyleName = "DetailCaption1";
     this.tableCell3.Text      = "Picture";
     this.tableCell3.Weight    = 0.23066551795372597D;
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table2
     });
     this.Detail.HeightF = 25F;
     this.Detail.Name    = "Detail";
     //
     // table2
     //
     this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.table2.Name          = "table2";
     this.table2.OddStyleName  = "DetailData3_Odd";
     this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow2
     });
     this.table2.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow2
     //
     this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell4,
         this.tableCell5,
         this.tableCell6
     });
     this.tableRow2.Name   = "tableRow2";
     this.tableRow2.Weight = 11.5D;
     //
     // tableCell4
     //
     this.tableCell4.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.tableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[CategoryID]")
     });
     this.tableCell4.Name = "tableCell4";
     this.tableCell4.Scripts.OnBeforePrint          = "tableCell4_BeforePrint";
     this.tableCell4.StyleName                      = "DetailData1";
     this.tableCell4.StylePriority.UseBorders       = false;
     this.tableCell4.StylePriority.UseTextAlignment = false;
     this.tableCell4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.tableCell4.Weight       = 0.34163161057692309D;
     this.tableCell4.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.tableCell4_BeforePrint);
     //
     // tableCell5
     //
     this.tableCell5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[CategoryName]")
     });
     this.tableCell5.Name      = "tableCell5";
     this.tableCell5.StyleName = "DetailData1";
     this.tableCell5.Weight    = 0.427702871469351D;
     //
     // tableCell6
     //
     this.tableCell6.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pictureBox1
     });
     this.tableCell6.Name      = "tableCell6";
     this.tableCell6.StyleName = "DetailData1";
     this.tableCell6.Weight    = 0.23066551795372597D;
     //
     // pictureBox1
     //
     this.pictureBox1.AnchorHorizontal = ((DevExpress.XtraReports.UI.HorizontalAnchorStyles)((DevExpress.XtraReports.UI.HorizontalAnchorStyles.Left | DevExpress.XtraReports.UI.HorizontalAnchorStyles.Right)));
     this.pictureBox1.AnchorVertical   = ((DevExpress.XtraReports.UI.VerticalAnchorStyles)((DevExpress.XtraReports.UI.VerticalAnchorStyles.Top | DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom)));
     this.pictureBox1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "ImageSource", "[Picture]")
     });
     this.pictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(2.083333F, 0F);
     this.pictureBox1.Name          = "pictureBox1";
     this.pictureBox1.SizeF         = new System.Drawing.SizeF(147.8493F, 25F);
     this.pictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pageInfo1,
         this.pageInfo2
     });
     this.BottomMargin.Name = "BottomMargin";
     //
     // pageInfo1
     //
     this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.pageInfo1.Name          = "pageInfo1";
     this.pageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.pageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo1.StyleName     = "PageInfo";
     //
     // pageInfo2
     //
     this.pageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(331F, 6F);
     this.pageInfo2.Name             = "pageInfo2";
     this.pageInfo2.SizeF            = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo2.StyleName        = "PageInfo";
     this.pageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.pageInfo2.TextFormatString = "Page {0} of {1}";
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Arial", 14.25F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.Title.Name        = "Title";
     //
     // DetailCaption1
     //
     this.DetailCaption1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.DetailCaption1.BorderColor   = System.Drawing.Color.White;
     this.DetailCaption1.Borders       = DevExpress.XtraPrinting.BorderSide.Left;
     this.DetailCaption1.BorderWidth   = 2F;
     this.DetailCaption1.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.DetailCaption1.ForeColor     = System.Drawing.Color.White;
     this.DetailCaption1.Name          = "DetailCaption1";
     this.DetailCaption1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailCaption1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData1
     //
     this.DetailData1.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData1.Borders       = DevExpress.XtraPrinting.BorderSide.Left;
     this.DetailData1.BorderWidth   = 2F;
     this.DetailData1.Font          = new System.Drawing.Font("Arial", 8.25F);
     this.DetailData1.ForeColor     = System.Drawing.Color.Black;
     this.DetailData1.Name          = "DetailData1";
     this.DetailData1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // DetailData3_Odd
     //
     this.DetailData3_Odd.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(231)))), ((int)(((byte)(231)))));
     this.DetailData3_Odd.BorderColor   = System.Drawing.Color.Transparent;
     this.DetailData3_Odd.Borders       = DevExpress.XtraPrinting.BorderSide.None;
     this.DetailData3_Odd.BorderWidth   = 1F;
     this.DetailData3_Odd.Font          = new System.Drawing.Font("Arial", 8.25F);
     this.DetailData3_Odd.ForeColor     = System.Drawing.Color.Black;
     this.DetailData3_Odd.Name          = "DetailData3_Odd";
     this.DetailData3_Odd.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 6, 0, 0, 100F);
     this.DetailData3_Odd.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(75)))), ((int)(((byte)(75)))), ((int)(((byte)(75)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "NWindConnectionString";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "CategoryID";
     table3.Name                  = "Categories";
     columnExpression1.Table      = table3;
     column1.Expression           = columnExpression1;
     columnExpression2.ColumnName = "CategoryName";
     columnExpression2.Table      = table3;
     column2.Expression           = columnExpression2;
     columnExpression3.ColumnName = "Description";
     columnExpression3.Table      = table3;
     column3.Expression           = columnExpression3;
     columnExpression4.ColumnName = "Picture";
     columnExpression4.Table      = table3;
     column4.Expression           = columnExpression4;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.Name = "Categories";
     selectQuery1.Tables.Add(table3);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = "PERhdGFTZXQgTmFtZT0ic3FsRGF0YVNvdXJjZTEiPjxWaWV3IE5hbWU9IkNhdGVnb3JpZXMiPjxGaWVsZCBOYW1lPSJDYXRlZ29yeUlEIiBUeXBlPSJJbnQzMiIgLz48RmllbGQgTmFtZT0iQ2F0ZWdvcnlOYW1lIiBUeXBlPSJTdHJpbmciIC8+PEZpZWxkIE5hbWU9IkRlc2NyaXB0aW9uIiBUeXBlPSJTdHJpbmciIC8+PEZpZWxkIE5hbWU9IlBpY3R1cmUiIFR5cGU9IkJ5dGVBcnJheSIgLz48L1ZpZXc+PC9EYXRhU2V0Pg==";
     //
     // TestReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.ReportHeader,
         this.GroupHeader1,
         this.Detail,
         this.BottomMargin
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "Categories";
     this.DataSource = this.sqlDataSource1;
     this.Extensions.Add("DataSerializationExtension", "DevExpress.XtraReports.Web.ReportDesigner.DefaultDataSerializer");
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.DetailCaption1,
         this.DetailData1,
         this.DetailData3_Odd,
         this.PageInfo
     });
     this.StyleSheetPath = "";
     this.Version        = "19.2";
     ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 41
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            string resourceFileName = "rp_Trainee.resx";

            this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
            this.xrTable2          = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrtOrderNumber    = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtEmployeeCode   = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtFullName       = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtBirthDate      = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtSex            = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtAddress        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtRecruimentDate = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtJobName        = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrtPositionName   = new DevExpress.XtraReports.UI.XRTableCell();
            this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
            this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
            this.ReportHeader      = new DevExpress.XtraReports.UI.ReportHeaderBand();
            this.xrLogo            = new DevExpress.XtraReports.UI.XRPictureBox();
            this.xrl_TenCongTy     = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_NgayBaoCao    = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_TitleBC       = new DevExpress.XtraReports.UI.XRLabel();
            this.PageHeader        = new DevExpress.XtraReports.UI.PageHeaderBand();
            this.xrTable1          = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow1       = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrTableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell2      = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell4      = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell3      = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell5      = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell6      = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell8      = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell12     = new DevExpress.XtraReports.UI.XRTableCell();
            this.xrTableCell15     = new DevExpress.XtraReports.UI.XRTableCell();
            this.ReportFooter      = new DevExpress.XtraReports.UI.ReportFooterBand();
            this.xrl_ten3          = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_ten2          = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_ten1          = new DevExpress.XtraReports.UI.XRLabel();
            this.xrt_ReportDate    = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_footer1       = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_footer3       = new DevExpress.XtraReports.UI.XRLabel();
            this.xrl_footer2       = new DevExpress.XtraReports.UI.XRLabel();
            this.GroupHeader1      = new DevExpress.XtraReports.UI.GroupHeaderBand();
            this.xrTable3          = new DevExpress.XtraReports.UI.XRTable();
            this.xrTableRow3       = new DevExpress.XtraReports.UI.XRTableRow();
            this.xrlDepartmentName = new DevExpress.XtraReports.UI.XRTableCell();
            this.GroupFooter1      = new DevExpress.XtraReports.UI.GroupFooterBand();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            //
            // Detail
            //
            this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable2
            });
            this.Detail.HeightF       = 25.41666F;
            this.Detail.Name          = "Detail";
            this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            this.Detail.BeforePrint  += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
            //
            // xrTable2
            //
            this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable2.Name          = "xrTable2";
            this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow2
            });
            this.xrTable2.SizeF = new System.Drawing.SizeF(1071.5F, 25.41666F);
            this.xrTable2.StylePriority.UseBorders = false;
            this.xrTable2.StylePriority.UsePadding = false;
            //
            // xrTableRow2
            //
            this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrtOrderNumber,
                this.xrtEmployeeCode,
                this.xrtFullName,
                this.xrtBirthDate,
                this.xrtSex,
                this.xrtAddress,
                this.xrtRecruimentDate,
                this.xrtJobName,
                this.xrtPositionName
            });
            this.xrTableRow2.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableRow2.Name = "xrTableRow2";
            this.xrTableRow2.StylePriority.UseFont          = false;
            this.xrTableRow2.StylePriority.UseTextAlignment = false;
            this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            this.xrTableRow2.Weight        = 1D;
            //
            // xrtOrderNumber
            //
            this.xrtOrderNumber.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtOrderNumber.Name = "xrtOrderNumber";
            this.xrtOrderNumber.StylePriority.UseFont          = false;
            this.xrtOrderNumber.StylePriority.UseTextAlignment = false;
            this.xrtOrderNumber.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrtOrderNumber.Weight        = 0.35416665980020634D;
            //
            // xrtEmployeeCode
            //
            this.xrtEmployeeCode.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtEmployeeCode.Name = "xrtEmployeeCode";
            this.xrtEmployeeCode.StylePriority.UseFont          = false;
            this.xrtEmployeeCode.StylePriority.UseTextAlignment = false;
            this.xrtEmployeeCode.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtEmployeeCode.Weight        = 1.0018496537150026D;
            //
            // xrtFullName
            //
            this.xrtFullName.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtFullName.Name = "xrtFullName";
            this.xrtFullName.StylePriority.UseFont          = false;
            this.xrtFullName.StylePriority.UseTextAlignment = false;
            this.xrtFullName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtFullName.Weight        = 1.3513321490219215D;
            //
            // xrtBirthDate
            //
            this.xrtBirthDate.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtBirthDate.Name = "xrtBirthDate";
            this.xrtBirthDate.StylePriority.UseFont          = false;
            this.xrtBirthDate.StylePriority.UseTextAlignment = false;
            this.xrtBirthDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrtBirthDate.Weight        = 1.0504393924663653D;
            //
            // xrtSex
            //
            this.xrtSex.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtSex.Name = "xrtSex";
            this.xrtSex.StylePriority.UseFont          = false;
            this.xrtSex.StylePriority.UseTextAlignment = false;
            this.xrtSex.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrtSex.Weight        = 0.61383325241460251D;
            //
            // xrtAddress
            //
            this.xrtAddress.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtAddress.Name = "xrtAddress";
            this.xrtAddress.StylePriority.UseFont          = false;
            this.xrtAddress.StylePriority.UseTextAlignment = false;
            this.xrtAddress.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtAddress.Weight        = 2.2163704830282653D;
            //
            // xrtRecruimentDate
            //
            this.xrtRecruimentDate.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtRecruimentDate.Name = "xrtRecruimentDate";
            this.xrtRecruimentDate.StylePriority.UseFont          = false;
            this.xrtRecruimentDate.StylePriority.UseTextAlignment = false;
            this.xrtRecruimentDate.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrtRecruimentDate.Weight        = 1.1016420686709785D;
            //
            // xrtJobName
            //
            this.xrtJobName.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtJobName.Name = "xrtJobName";
            this.xrtJobName.StylePriority.UseFont          = false;
            this.xrtJobName.StylePriority.UseTextAlignment = false;
            this.xrtJobName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtJobName.Weight        = 1.4113269749886375D;
            //
            // xrtPositionName
            //
            this.xrtPositionName.Font = new System.Drawing.Font("Times New Roman", 10F);
            this.xrtPositionName.Name = "xrtPositionName";
            this.xrtPositionName.StylePriority.UseFont          = false;
            this.xrtPositionName.StylePriority.UseTextAlignment = false;
            this.xrtPositionName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrtPositionName.Weight        = 1.6338582386491096D;
            //
            // TopMargin
            //
            this.TopMargin.HeightF       = 51F;
            this.TopMargin.Name          = "TopMargin";
            this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // BottomMargin
            //
            this.BottomMargin.HeightF       = 47F;
            this.BottomMargin.Name          = "BottomMargin";
            this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
            this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
            //
            // ReportHeader
            //
            this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrLogo,
                this.xrl_TenCongTy,
                this.xrl_NgayBaoCao,
                this.xrl_TitleBC
            });
            this.ReportHeader.HeightF = 209F;
            this.ReportHeader.Name    = "ReportHeader";
            //
            // xrLogo
            //
            this.xrLogo.LocationFloat            = new DevExpress.Utils.PointFloat(56.20833F, 0F);
            this.xrLogo.Name                     = "xrLogo";
            this.xrLogo.Padding                  = new DevExpress.XtraPrinting.PaddingInfo(1, 1, 1, 1, 100F);
            this.xrLogo.SizeF                    = new System.Drawing.SizeF(110F, 110F);
            this.xrLogo.Sizing                   = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
            this.xrLogo.StylePriority.UsePadding = false;
            //
            // xrl_TenCongTy
            //
            this.xrl_TenCongTy.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
            this.xrl_TenCongTy.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 114F);
            this.xrl_TenCongTy.Name                           = "xrl_TenCongTy";
            this.xrl_TenCongTy.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(3, 2, 0, 0, 100F);
            this.xrl_TenCongTy.SizeF                          = new System.Drawing.SizeF(544.7917F, 23F);
            this.xrl_TenCongTy.StylePriority.UseFont          = false;
            this.xrl_TenCongTy.StylePriority.UsePadding       = false;
            this.xrl_TenCongTy.StylePriority.UseTextAlignment = false;
            this.xrl_TenCongTy.Text                           = "CÔNG TY TNHH THƯƠNG MẠI VÀ XÂY DỰNG TRUNG CHÍNH";
            this.xrl_TenCongTy.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            //
            // xrl_NgayBaoCao
            //
            this.xrl_NgayBaoCao.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Italic);
            this.xrl_NgayBaoCao.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 179F);
            this.xrl_NgayBaoCao.Name                           = "xrl_NgayBaoCao";
            this.xrl_NgayBaoCao.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_NgayBaoCao.SizeF                          = new System.Drawing.SizeF(1071.5F, 23.00001F);
            this.xrl_NgayBaoCao.StylePriority.UseFont          = false;
            this.xrl_NgayBaoCao.StylePriority.UseTextAlignment = false;
            this.xrl_NgayBaoCao.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrl_TitleBC
            //
            this.xrl_TitleBC.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrl_TitleBC.LocationFloat                  = new DevExpress.Utils.PointFloat(0F, 154F);
            this.xrl_TitleBC.Name                           = "xrl_TitleBC";
            this.xrl_TitleBC.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_TitleBC.SizeF                          = new System.Drawing.SizeF(1071.5F, 23F);
            this.xrl_TitleBC.StylePriority.UseFont          = false;
            this.xrl_TitleBC.StylePriority.UseTextAlignment = false;
            this.xrl_TitleBC.Text                           = "BÁO CÁO DANH SÁCH NHÂN VIÊN THỬ VIỆC";
            this.xrl_TitleBC.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // PageHeader
            //
            this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable1
            });
            this.PageHeader.HeightF = 48.33333F;
            this.PageHeader.Name    = "PageHeader";
            //
            // xrTable1
            //
            this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                            | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
            this.xrTable1.Name          = "xrTable1";
            this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow1
            });
            this.xrTable1.SizeF = new System.Drawing.SizeF(1071.5F, 48.33333F);
            this.xrTable1.StylePriority.UseBorders       = false;
            this.xrTable1.StylePriority.UseTextAlignment = false;
            this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            //
            // xrTableRow1
            //
            this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrTableCell1,
                this.xrTableCell2,
                this.xrTableCell4,
                this.xrTableCell3,
                this.xrTableCell5,
                this.xrTableCell6,
                this.xrTableCell8,
                this.xrTableCell12,
                this.xrTableCell15
            });
            this.xrTableRow1.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableRow1.Name    = "xrTableRow1";
            this.xrTableRow1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 5, 0, 100F);
            this.xrTableRow1.StylePriority.UseFont          = false;
            this.xrTableRow1.StylePriority.UsePadding       = false;
            this.xrTableRow1.StylePriority.UseTextAlignment = false;
            this.xrTableRow1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            this.xrTableRow1.Weight        = 1D;
            //
            // xrTableCell1
            //
            this.xrTableCell1.Name = "xrTableCell1";
            this.xrTableCell1.StylePriority.UseTextAlignment = false;
            this.xrTableCell1.Text          = "STT";
            this.xrTableCell1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell1.Weight        = 0.35416665980020634D;
            //
            // xrTableCell2
            //
            this.xrTableCell2.Multiline = true;
            this.xrTableCell2.Name      = "xrTableCell2";
            this.xrTableCell2.StylePriority.UseTextAlignment = false;
            this.xrTableCell2.Text          = "Mã nhân viên";
            this.xrTableCell2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell2.Weight        = 1.0018496351292998D;
            //
            // xrTableCell4
            //
            this.xrTableCell4.Name = "xrTableCell4";
            this.xrTableCell4.StylePriority.UseTextAlignment = false;
            this.xrTableCell4.Text          = "Họ tên";
            this.xrTableCell4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell4.Weight        = 1.3513413076263903D;
            //
            // xrTableCell3
            //
            this.xrTableCell3.Name = "xrTableCell3";
            this.xrTableCell3.StylePriority.UseTextAlignment = false;
            this.xrTableCell3.Text          = "Ngày sinh";
            this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell3.Weight        = 1.0504394071054914D;
            //
            // xrTableCell5
            //
            this.xrTableCell5.Name = "xrTableCell5";
            this.xrTableCell5.StylePriority.UseTextAlignment = false;
            this.xrTableCell5.Text          = "Giới tính";
            this.xrTableCell5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell5.Weight        = 0.61383324139272166D;
            //
            // xrTableCell6
            //
            this.xrTableCell6.Name = "xrTableCell6";
            this.xrTableCell6.StylePriority.UseTextAlignment = false;
            this.xrTableCell6.Text          = "Địa chỉ";
            this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell6.Weight        = 2.2163611864636534D;
            //
            // xrTableCell8
            //
            this.xrTableCell8.Multiline = true;
            this.xrTableCell8.Name      = "xrTableCell8";
            this.xrTableCell8.StylePriority.UseTextAlignment = false;
            this.xrTableCell8.Text          = "Ngày thử việc";
            this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell8.Weight        = 1.1016420451433482D;
            //
            // xrTableCell12
            //
            this.xrTableCell12.Name = "xrTableCell12";
            this.xrTableCell12.StylePriority.UseTextAlignment = false;
            this.xrTableCell12.Text          = "Vị trí công việc";
            this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell12.Weight        = 1.4113275588114178D;
            //
            // xrTableCell15
            //
            this.xrTableCell15.Name = "xrTableCell15";
            this.xrTableCell15.StylePriority.UseTextAlignment = false;
            this.xrTableCell15.Text          = "Chức vụ";
            this.xrTableCell15.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
            this.xrTableCell15.Weight        = 1.6338578312825594D;
            //
            // ReportFooter
            //
            this.ReportFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrl_ten3,
                this.xrl_ten2,
                this.xrl_ten1,
                this.xrt_ReportDate,
                this.xrl_footer1,
                this.xrl_footer3,
                this.xrl_footer2
            });
            this.ReportFooter.HeightF = 228F;
            this.ReportFooter.Name    = "ReportFooter";
            //
            // xrl_ten3
            //
            this.xrl_ten3.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrl_ten3.LocationFloat                  = new DevExpress.Utils.PointFloat(789.5834F, 169.375F);
            this.xrl_ten3.Name                           = "xrl_ten3";
            this.xrl_ten3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_ten3.SizeF                          = new System.Drawing.SizeF(282.4167F, 23F);
            this.xrl_ten3.StylePriority.UseFont          = false;
            this.xrl_ten3.StylePriority.UseTextAlignment = false;
            this.xrl_ten3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrl_ten2
            //
            this.xrl_ten2.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrl_ten2.LocationFloat                  = new DevExpress.Utils.PointFloat(377.0833F, 169.375F);
            this.xrl_ten2.Name                           = "xrl_ten2";
            this.xrl_ten2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_ten2.SizeF                          = new System.Drawing.SizeF(302.1819F, 23F);
            this.xrl_ten2.StylePriority.UseFont          = false;
            this.xrl_ten2.StylePriority.UseTextAlignment = false;
            this.xrl_ten2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrl_ten1
            //
            this.xrl_ten1.Font                           = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
            this.xrl_ten1.LocationFloat                  = new DevExpress.Utils.PointFloat(2.083333F, 169.375F);
            this.xrl_ten1.Name                           = "xrl_ten1";
            this.xrl_ten1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_ten1.SizeF                          = new System.Drawing.SizeF(302.1819F, 23F);
            this.xrl_ten1.StylePriority.UseFont          = false;
            this.xrl_ten1.StylePriority.UseTextAlignment = false;
            this.xrl_ten1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrt_ReportDate
            //
            this.xrt_ReportDate.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Italic);
            this.xrt_ReportDate.LocationFloat                  = new DevExpress.Utils.PointFloat(789.5833F, 22.50004F);
            this.xrt_ReportDate.Name                           = "xrt_ReportDate";
            this.xrt_ReportDate.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrt_ReportDate.SizeF                          = new System.Drawing.SizeF(282.4167F, 23F);
            this.xrt_ReportDate.StylePriority.UseFont          = false;
            this.xrt_ReportDate.StylePriority.UseTextAlignment = false;
            this.xrt_ReportDate.Text                           = "{0}, ngày {1} tháng {2} năm {3}";
            this.xrt_ReportDate.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrl_footer1
            //
            this.xrl_footer1.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
            this.xrl_footer1.LocationFloat                  = new DevExpress.Utils.PointFloat(2.083333F, 47.50004F);
            this.xrl_footer1.Name                           = "xrl_footer1";
            this.xrl_footer1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_footer1.SizeF                          = new System.Drawing.SizeF(304.1828F, 23F);
            this.xrl_footer1.StylePriority.UseFont          = false;
            this.xrl_footer1.StylePriority.UseTextAlignment = false;
            this.xrl_footer1.Text                           = "NGƯỜI LẬP";
            this.xrl_footer1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrl_footer3
            //
            this.xrl_footer3.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
            this.xrl_footer3.LocationFloat                  = new DevExpress.Utils.PointFloat(789.5833F, 47.50004F);
            this.xrl_footer3.Name                           = "xrl_footer3";
            this.xrl_footer3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_footer3.SizeF                          = new System.Drawing.SizeF(281.9166F, 23F);
            this.xrl_footer3.StylePriority.UseFont          = false;
            this.xrl_footer3.StylePriority.UseTextAlignment = false;
            this.xrl_footer3.Text                           = "GIÁM ĐỐC";
            this.xrl_footer3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // xrl_footer2
            //
            this.xrl_footer2.Font                           = new System.Drawing.Font("Times New Roman", 11F, System.Drawing.FontStyle.Bold);
            this.xrl_footer2.LocationFloat                  = new DevExpress.Utils.PointFloat(377.0833F, 47.50004F);
            this.xrl_footer2.Name                           = "xrl_footer2";
            this.xrl_footer2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
            this.xrl_footer2.SizeF                          = new System.Drawing.SizeF(304.1828F, 23F);
            this.xrl_footer2.StylePriority.UseFont          = false;
            this.xrl_footer2.StylePriority.UseTextAlignment = false;
            this.xrl_footer2.Text                           = "PHÒNG TCHC";
            this.xrl_footer2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            //
            // GroupHeader1
            //
            this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
                this.xrTable3
            });
            this.GroupHeader1.HeightF      = 26F;
            this.GroupHeader1.Name         = "GroupHeader1";
            this.GroupHeader1.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Group_BeforePrint);
            //
            // xrTable3
            //
            this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                           | DevExpress.XtraPrinting.BorderSide.Bottom)));
            this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0.4999558F, 0F);
            this.xrTable3.Name          = "xrTable3";
            this.xrTable3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(3, 3, 3, 3, 100F);
            this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
                this.xrTableRow3
            });
            this.xrTable3.SizeF = new System.Drawing.SizeF(1071.5F, 25.41666F);
            this.xrTable3.StylePriority.UseBorders = false;
            this.xrTable3.StylePriority.UsePadding = false;
            //
            // xrTableRow3
            //
            this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
                this.xrlDepartmentName
            });
            this.xrTableRow3.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrTableRow3.Name = "xrTableRow3";
            this.xrTableRow3.StylePriority.UseFont          = false;
            this.xrTableRow3.StylePriority.UseTextAlignment = false;
            this.xrTableRow3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
            this.xrTableRow3.Weight        = 1D;
            //
            // xrlDepartmentName
            //
            this.xrlDepartmentName.Font    = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
            this.xrlDepartmentName.Name    = "xrlDepartmentName";
            this.xrlDepartmentName.Padding = new DevExpress.XtraPrinting.PaddingInfo(11, 3, 3, 3, 100F);
            this.xrlDepartmentName.StylePriority.UseFont          = false;
            this.xrlDepartmentName.StylePriority.UsePadding       = false;
            this.xrlDepartmentName.StylePriority.UseTextAlignment = false;
            this.xrlDepartmentName.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
            this.xrlDepartmentName.Weight        = 10.73481887275509D;
            //
            // GroupFooter1
            //
            this.GroupFooter1.HeightF = 100F;
            this.GroupFooter1.Name    = "GroupFooter1";
            //
            // rp_Trainee
            //
            this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
                this.Detail,
                this.TopMargin,
                this.BottomMargin,
                this.ReportHeader,
                this.PageHeader,
                this.ReportFooter,
                this.GroupHeader1,
                this.GroupFooter1
            });
            this.Landscape  = true;
            this.Margins    = new System.Drawing.Printing.Margins(12, 16, 51, 47);
            this.PageHeight = 850;
            this.PageWidth  = 1100;
            this.Version    = "15.1";
            ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
        }
Ejemplo n.º 42
0
 private void InitializeComponent()
 {
     this.TopMargin    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.table2       = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell5   = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
     this.table1       = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell1   = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell3   = new DevExpress.XtraReports.UI.XRTableCell();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail       = new DevExpress.XtraReports.UI.DetailBand();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table2
     });
     this.TopMargin.HeightF = 133.3333F;
     this.TopMargin.Name    = "TopMargin";
     //
     // table2
     //
     this.table2.AnchorVertical = DevExpress.XtraReports.UI.VerticalAnchorStyles.Bottom;
     this.table2.LocationFloat  = new DevExpress.Utils.PointFloat(10.00001F, 97.50001F);
     this.table2.Name           = "table2";
     this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow2
     });
     this.table2.SizeF = new System.Drawing.SizeF(630F, 35.8333F);
     //
     // tableRow2
     //
     this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell4,
         this.tableCell5,
         this.tableCell6
     });
     this.tableRow2.Name   = "tableRow2";
     this.tableRow2.Weight = 1D;
     //
     // tableCell4
     //
     this.tableCell4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.tableCell4.Borders   = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)));
     this.tableCell4.CanGrow = false;
     this.tableCell4.Font    = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.tableCell4.Name    = "tableCell4";
     this.tableCell4.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 5, 5, 5, 100F);
     this.tableCell4.StylePriority.UseBackColor = false;
     this.tableCell4.StylePriority.UseBorders   = false;
     this.tableCell4.StylePriority.UseFont      = false;
     this.tableCell4.StylePriority.UsePadding   = false;
     this.tableCell4.Text   = "From";
     this.tableCell4.Weight = 1D;
     //
     // tableCell5
     //
     this.tableCell5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.tableCell5.Borders   = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)));
     this.tableCell5.CanGrow = false;
     this.tableCell5.Font    = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.tableCell5.Name    = "tableCell5";
     this.tableCell5.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 5, 5, 5, 100F);
     this.tableCell5.StylePriority.UseBackColor = false;
     this.tableCell5.StylePriority.UseBorders   = false;
     this.tableCell5.StylePriority.UseFont      = false;
     this.tableCell5.StylePriority.UsePadding   = false;
     this.tableCell5.Text   = "Subject";
     this.tableCell5.Weight = 1.461309523809524D;
     //
     // tableCell6
     //
     this.tableCell6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.tableCell6.Borders   = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                        | DevExpress.XtraPrinting.BorderSide.Right)));
     this.tableCell6.CanGrow = false;
     this.tableCell6.Font    = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
     this.tableCell6.Name    = "tableCell6";
     this.tableCell6.Padding = new DevExpress.XtraPrinting.PaddingInfo(10, 5, 5, 5, 100F);
     this.tableCell6.StylePriority.UseBackColor = false;
     this.tableCell6.StylePriority.UseBorders   = false;
     this.tableCell6.StylePriority.UseFont      = false;
     this.tableCell6.StylePriority.UsePadding   = false;
     this.tableCell6.Text   = "Date";
     this.tableCell6.Weight = 0.53869047619047616D;
     //
     // table1
     //
     this.table1.LocationFloat = new DevExpress.Utils.PointFloat(10F, 0F);
     this.table1.Name          = "table1";
     this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow1
     });
     this.table1.SizeF = new System.Drawing.SizeF(630F, 25F);
     //
     // tableRow1
     //
     this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell1,
         this.tableCell2,
         this.tableCell3
     });
     this.tableRow1.Name   = "tableRow1";
     this.tableRow1.Weight = 1D;
     //
     // tableCell1
     //
     this.tableCell1.Borders = DevExpress.XtraPrinting.BorderSide.Top;
     this.tableCell1.Name    = "tableCell1";
     this.tableCell1.StylePriority.UseBorders = false;
     this.tableCell1.Text   = "[From]";
     this.tableCell1.Weight = 2.1000004577636715D;
     //
     // tableCell2
     //
     this.tableCell2.Borders = DevExpress.XtraPrinting.BorderSide.Top;
     this.tableCell2.Name    = "tableCell2";
     this.tableCell2.StylePriority.UseBorders = false;
     this.tableCell2.Text   = "[Subject]";
     this.tableCell2.Weight = 3.068749389648437D;
     //
     // tableCell3
     //
     this.tableCell3.Borders = DevExpress.XtraPrinting.BorderSide.Top;
     this.tableCell3.Name    = "tableCell3";
     this.tableCell3.StylePriority.UseBorders = false;
     this.tableCell3.Text   = "[Date]";
     this.tableCell3.Weight = 1.1312501525878913D;
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table1
     });
     this.Detail.HeightF = 35.00001F;
     this.Detail.Name    = "Detail";
     //
     // MailReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.Detail,
         this.BottomMargin
     });
     this.Margins = new System.Drawing.Printing.Margins(100, 100, 133, 100);
     this.Version = "13.2";
     ((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources      = new System.ComponentModel.ComponentResourceManager(typeof(XtraRepCertifi));
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1   = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column           column1            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression columnExpression1  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table            table1             = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column           column2            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression columnExpression2  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column           column3            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression columnExpression3  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column           column4            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression columnExpression4  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column           column5            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression columnExpression5  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column           column6            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression columnExpression6  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column           column7            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression columnExpression7  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column           column8            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression columnExpression8  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column           column9            = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression columnExpression9  = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column           column10           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression columnExpression10 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column           column11           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression columnExpression11 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column           column12           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression columnExpression12 = new DevExpress.DataAccess.Sql.ColumnExpression();
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrPictureBox4  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox3  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrPictureBox2  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLine2        = new DevExpress.XtraReports.UI.XRLine();
     this.xrPictureBox1  = new DevExpress.XtraReports.UI.XRPictureBox();
     this.xrLabel16      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel18      = new DevExpress.XtraReports.UI.XRLabel();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.xrPageInfo1    = new DevExpress.XtraReports.UI.XRPageInfo();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel15      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrRichText1    = new DevExpress.XtraReports.UI.XRRichText();
     this.xrLine1        = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel19      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrRichText2    = new DevExpress.XtraReports.UI.XRRichText();
     this.xrLabel7       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel9       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel14      = new DevExpress.XtraReports.UI.XRLabel();
     this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPictureBox4,
         this.xrPictureBox3,
         this.xrPictureBox2,
         this.xrLine2,
         this.xrPictureBox1,
         this.xrLabel16,
         this.xrLabel17,
         this.xrLabel18
     });
     this.TopMargin.HeightF = 234.75F;
     this.TopMargin.Name    = "TopMargin";
     //
     // xrPictureBox4
     //
     this.xrPictureBox4.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox4.ImageSource"));
     this.xrPictureBox4.LocationFloat = new DevExpress.Utils.PointFloat(268.4583F, 9.99999F);
     this.xrPictureBox4.Name          = "xrPictureBox4";
     this.xrPictureBox4.SizeF         = new System.Drawing.SizeF(162.5F, 132F);
     this.xrPictureBox4.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
     //
     // xrPictureBox3
     //
     this.xrPictureBox3.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox3.ImageSource"));
     this.xrPictureBox3.LocationFloat = new DevExpress.Utils.PointFloat(269.5F, 9.99999F);
     this.xrPictureBox3.Name          = "xrPictureBox3";
     this.xrPictureBox3.SizeF         = new System.Drawing.SizeF(162.5F, 132F);
     this.xrPictureBox3.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
     //
     // xrPictureBox2
     //
     this.xrPictureBox2.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox2.ImageSource"));
     this.xrPictureBox2.LocationFloat = new DevExpress.Utils.PointFloat(268.4583F, 10.00001F);
     this.xrPictureBox2.Name          = "xrPictureBox2";
     this.xrPictureBox2.SizeF         = new System.Drawing.SizeF(162.5F, 132F);
     this.xrPictureBox2.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
     //
     // xrLine2
     //
     this.xrLine2.LineWidth     = 2F;
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 224.25F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(650F, 10.50002F);
     //
     // xrPictureBox1
     //
     this.xrPictureBox1.ImageSource   = new DevExpress.XtraPrinting.Drawing.ImageSource("img", resources.GetString("xrPictureBox1.ImageSource"));
     this.xrPictureBox1.LocationFloat = new DevExpress.Utils.PointFloat(269.5F, 10.00001F);
     this.xrPictureBox1.Name          = "xrPictureBox1";
     this.xrPictureBox1.SizeF         = new System.Drawing.SizeF(161.4583F, 132F);
     this.xrPictureBox1.Sizing        = DevExpress.XtraPrinting.ImageSizeMode.ZoomImage;
     //
     // xrLabel16
     //
     this.xrLabel16.Font                           = new System.Drawing.Font("Arial Rounded MT Bold", 13F);
     this.xrLabel16.LocationFloat                  = new DevExpress.Utils.PointFloat(187.2083F, 142F);
     this.xrLabel16.Multiline                      = true;
     this.xrLabel16.Name                           = "xrLabel16";
     this.xrLabel16.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel16.SizeF                          = new System.Drawing.SizeF(321.875F, 21.95832F);
     this.xrLabel16.StylePriority.UseFont          = false;
     this.xrLabel16.StylePriority.UseTextAlignment = false;
     this.xrLabel16.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel17
     //
     this.xrLabel17.Font                           = new System.Drawing.Font("Arial Rounded MT Bold", 12F);
     this.xrLabel17.LocationFloat                  = new DevExpress.Utils.PointFloat(205.5416F, 164.75F);
     this.xrLabel17.Multiline                      = true;
     this.xrLabel17.Name                           = "xrLabel17";
     this.xrLabel17.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF                          = new System.Drawing.SizeF(284.9583F, 23F);
     this.xrLabel17.StylePriority.UseFont          = false;
     this.xrLabel17.StylePriority.UseTextAlignment = false;
     this.xrLabel17.Text                           = "Internal Revenue Service";
     this.xrLabel17.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrLabel18
     //
     this.xrLabel18.Font                           = new System.Drawing.Font("Arial Rounded MT Bold", 12F, System.Drawing.FontStyle.Bold);
     this.xrLabel18.LocationFloat                  = new DevExpress.Utils.PointFloat(175.1249F, 188.75F);
     this.xrLabel18.Multiline                      = true;
     this.xrLabel18.Name                           = "xrLabel18";
     this.xrLabel18.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel18.SizeF                          = new System.Drawing.SizeF(359.9583F, 23F);
     this.xrLabel18.StylePriority.UseFont          = false;
     this.xrLabel18.StylePriority.UseTextAlignment = false;
     this.xrLabel18.Text                           = "State Tax Identification (S-TIN) Notice";
     this.xrLabel18.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1
     });
     this.BottomMargin.HeightF = 33.87496F;
     this.BottomMargin.Name    = "BottomMargin";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.LocationFloat    = new DevExpress.Utils.PointFloat(410.4167F, 9.791689F);
     this.xrPageInfo1.Name             = "xrPageInfo1";
     this.xrPageInfo1.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo         = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF            = new System.Drawing.SizeF(203.125F, 23F);
     this.xrPageInfo1.TextFormatString = "{0:dddd, MMMM d, yyyy h:mm tt}";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel15,
         this.xrLabel8,
         this.xrLabel12,
         this.xrLabel5,
         this.xrLabel1,
         this.xrRichText1,
         this.xrLine1,
         this.xrLabel19,
         this.xrRichText2,
         this.xrLabel7,
         this.xrLabel6,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel9,
         this.xrLabel10,
         this.xrLabel11,
         this.xrLabel13,
         this.xrLabel14
     });
     this.Detail.HeightF      = 437.4583F;
     this.Detail.Name         = "Detail";
     this.Detail.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.Detail_BeforePrint);
     //
     // xrLabel15
     //
     this.xrLabel15.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[MerchantCode]")
     });
     this.xrLabel15.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 56.25F);
     this.xrLabel15.Multiline     = true;
     this.xrLabel15.Name          = "xrLabel15";
     this.xrLabel15.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel15.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel15.Text          = "xrLabel15";
     this.xrLabel15.Visible       = false;
     //
     // xrLabel8
     //
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[City]")
     });
     this.xrLabel8.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat         = new DevExpress.Utils.PointFloat(304.4583F, 185.75F);
     this.xrLabel8.Multiline             = true;
     this.xrLabel8.Name                  = "xrLabel8";
     this.xrLabel8.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF                 = new System.Drawing.SizeF(335.5416F, 23F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.Text                  = "xrLabel8";
     //
     // xrLabel12
     //
     this.xrLabel12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[LGA]")
     });
     this.xrLabel12.Font                  = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel12.LocationFloat         = new DevExpress.Utils.PointFloat(303.125F, 217.2083F);
     this.xrLabel12.Multiline             = true;
     this.xrLabel12.Name                  = "xrLabel12";
     this.xrLabel12.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF                 = new System.Drawing.SizeF(336.8749F, 23F);
     this.xrLabel12.StylePriority.UseFont = false;
     this.xrLabel12.Text                  = "xrLabel12";
     //
     // xrLabel5
     //
     this.xrLabel5.Font                           = new System.Drawing.Font("Arial Rounded MT Bold", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat                  = new DevExpress.Utils.PointFloat(32.125F, 217.2083F);
     this.xrLabel5.Multiline                      = true;
     this.xrLabel5.Name                           = "xrLabel5";
     this.xrLabel5.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF                          = new System.Drawing.SizeF(206.25F, 23F);
     this.xrLabel5.StylePriority.UseFont          = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text                           = "Registered LGA";
     this.xrLabel5.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel1
     //
     this.xrLabel1.Font                           = new System.Drawing.Font("Arial Rounded MT Bold", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel1.LocationFloat                  = new DevExpress.Utils.PointFloat(32.125F, 185.75F);
     this.xrLabel1.Multiline                      = true;
     this.xrLabel1.Name                           = "xrLabel1";
     this.xrLabel1.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF                          = new System.Drawing.SizeF(206.25F, 23F);
     this.xrLabel1.StylePriority.UseFont          = false;
     this.xrLabel1.StylePriority.UseTextAlignment = false;
     this.xrLabel1.Text                           = "Registered City/Town";
     this.xrLabel1.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrRichText1
     //
     this.xrRichText1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Html", "\'<p align=\"justify\">This is to confirm your registration with the <b>\'+[MerchantN" +
                                                         "ame]+\' Internal Revenue Service</b> for revenue payments and  remittances. Your " +
                                                         "registration details are as follows:\'")
     });
     this.xrRichText1.Font                  = new System.Drawing.Font("Arial Rounded MT Bold", 10F);
     this.xrRichText1.LocationFloat         = new DevExpress.Utils.PointFloat(43.58331F, 2.000007F);
     this.xrRichText1.Name                  = "xrRichText1";
     this.xrRichText1.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrRichText1.SerializableRtfString = resources.GetString("xrRichText1.SerializableRtfString");
     this.xrRichText1.SizeF                 = new System.Drawing.SizeF(596.4166F, 54.24998F);
     this.xrRichText1.StylePriority.UseFont = false;
     //
     // xrLine1
     //
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(209.0833F, 396.3333F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(221.875F, 13.62497F);
     //
     // xrLabel19
     //
     this.xrLabel19.LocationFloat = new DevExpress.Utils.PointFloat(233.625F, 409.9583F);
     this.xrLabel19.Multiline     = true;
     this.xrLabel19.Name          = "xrLabel19";
     this.xrLabel19.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel19.SizeF         = new System.Drawing.SizeF(170.8333F, 22.99997F);
     this.xrLabel19.StylePriority.UseTextAlignment = false;
     this.xrLabel19.Text          = "Director of Operations";
     this.xrLabel19.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrRichText2
     //
     this.xrRichText2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Html", resources.GetString("xrRichText2.ExpressionBindings"))
     });
     this.xrRichText2.Font                  = new System.Drawing.Font("Arial", 9.75F);
     this.xrRichText2.LocationFloat         = new DevExpress.Utils.PointFloat(32.125F, 311.125F);
     this.xrRichText2.Name                  = "xrRichText2";
     this.xrRichText2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrRichText2.SerializableRtfString = resources.GetString("xrRichText2.SerializableRtfString");
     this.xrRichText2.SizeF                 = new System.Drawing.SizeF(596.4166F, 59.08344F);
     this.xrRichText2.StylePriority.UseFont = false;
     //
     // xrLabel7
     //
     this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Email]")
     });
     this.xrLabel7.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat                  = new DevExpress.Utils.PointFloat(303.125F, 280.125F);
     this.xrLabel7.Multiline                      = true;
     this.xrLabel7.Name                           = "xrLabel7";
     this.xrLabel7.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF                          = new System.Drawing.SizeF(336.8749F, 23F);
     this.xrLabel7.StylePriority.UseFont          = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text                           = "xrLabel7";
     this.xrLabel7.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel6
     //
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[phone]")
     });
     this.xrLabel6.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat                  = new DevExpress.Utils.PointFloat(303.125F, 248.6667F);
     this.xrLabel6.Multiline                      = true;
     this.xrLabel6.Name                           = "xrLabel6";
     this.xrLabel6.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF                          = new System.Drawing.SizeF(336.8749F, 23F);
     this.xrLabel6.StylePriority.UseFont          = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text                           = "xrLabel6";
     this.xrLabel6.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel4
     //
     this.xrLabel4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Address]")
     });
     this.xrLabel4.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel4.LocationFloat                  = new DevExpress.Utils.PointFloat(303.125F, 134.5F);
     this.xrLabel4.Multiline                      = true;
     this.xrLabel4.Name                           = "xrLabel4";
     this.xrLabel4.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF                          = new System.Drawing.SizeF(336.8749F, 42.79167F);
     this.xrLabel4.StylePriority.UseFont          = false;
     this.xrLabel4.StylePriority.UseTextAlignment = false;
     this.xrLabel4.Text                           = "xrLabel4";
     this.xrLabel4.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel3
     //
     this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PayerName]")
     });
     this.xrLabel3.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat                  = new DevExpress.Utils.PointFloat(303.125F, 103.0417F);
     this.xrLabel3.Multiline                      = true;
     this.xrLabel3.Name                           = "xrLabel3";
     this.xrLabel3.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF                          = new System.Drawing.SizeF(336.8749F, 23F);
     this.xrLabel3.StylePriority.UseFont          = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text                           = "xrLabel3";
     this.xrLabel3.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel2
     //
     this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PayerUtin]")
     });
     this.xrLabel2.Font                           = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat                  = new DevExpress.Utils.PointFloat(303.125F, 71.58334F);
     this.xrLabel2.Multiline                      = true;
     this.xrLabel2.Name                           = "xrLabel2";
     this.xrLabel2.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                          = new System.Drawing.SizeF(336.8749F, 23F);
     this.xrLabel2.StylePriority.UseFont          = false;
     this.xrLabel2.StylePriority.UseTextAlignment = false;
     this.xrLabel2.Text                           = "xrLabel2";
     this.xrLabel2.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel9
     //
     this.xrLabel9.Font                           = new System.Drawing.Font("Arial Rounded MT Bold", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat                  = new DevExpress.Utils.PointFloat(32.125F, 71.58334F);
     this.xrLabel9.Multiline                      = true;
     this.xrLabel9.Name                           = "xrLabel9";
     this.xrLabel9.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF                          = new System.Drawing.SizeF(202.0833F, 21.95835F);
     this.xrLabel9.StylePriority.UseFont          = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text                           = "State Tax Identification No.";
     this.xrLabel9.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.Font                           = new System.Drawing.Font("Arial Rounded MT Bold", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel10.LocationFloat                  = new DevExpress.Utils.PointFloat(32.125F, 103.0417F);
     this.xrLabel10.Multiline                      = true;
     this.xrLabel10.Name                           = "xrLabel10";
     this.xrLabel10.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF                          = new System.Drawing.SizeF(161.4583F, 23F);
     this.xrLabel10.StylePriority.UseFont          = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text                           = "Registered Name";
     this.xrLabel10.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel11
     //
     this.xrLabel11.Font                           = new System.Drawing.Font("Arial Rounded MT Bold", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat                  = new DevExpress.Utils.PointFloat(32.125F, 134.5F);
     this.xrLabel11.Multiline                      = true;
     this.xrLabel11.Name                           = "xrLabel11";
     this.xrLabel11.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF                          = new System.Drawing.SizeF(161.4583F, 23F);
     this.xrLabel11.StylePriority.UseFont          = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text                           = "Registered Address";
     this.xrLabel11.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel13
     //
     this.xrLabel13.Font                           = new System.Drawing.Font("Arial Rounded MT Bold", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel13.LocationFloat                  = new DevExpress.Utils.PointFloat(32.125F, 248.6667F);
     this.xrLabel13.Multiline                      = true;
     this.xrLabel13.Name                           = "xrLabel13";
     this.xrLabel13.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF                          = new System.Drawing.SizeF(206.25F, 23F);
     this.xrLabel13.StylePriority.UseFont          = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text                           = "Registered Telephone No.";
     this.xrLabel13.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrLabel14
     //
     this.xrLabel14.Font                           = new System.Drawing.Font("Arial Rounded MT Bold", 10F, System.Drawing.FontStyle.Bold);
     this.xrLabel14.LocationFloat                  = new DevExpress.Utils.PointFloat(32.125F, 280.125F);
     this.xrLabel14.Multiline                      = true;
     this.xrLabel14.Name                           = "xrLabel14";
     this.xrLabel14.Padding                        = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel14.SizeF                          = new System.Drawing.SizeF(206.25F, 23F);
     this.xrLabel14.StylePriority.UseFont          = false;
     this.xrLabel14.StylePriority.UseTextAlignment = false;
     this.xrLabel14.Text                           = "Registered Email Address";
     this.xrLabel14.TextAlignment                  = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName = "Registration2ConnectionString";
     this.sqlDataSource1.Name           = "sqlDataSource1";
     columnExpression1.ColumnName       = "PayerName";
     table1.MetaSerializable            = "<Meta X=\"30\" Y=\"30\" Width=\"125\" Height=\"286\" />";
     table1.Name                   = "ViewCertificateInformation";
     columnExpression1.Table       = table1;
     column1.Expression            = columnExpression1;
     columnExpression2.ColumnName  = "Address";
     columnExpression2.Table       = table1;
     column2.Expression            = columnExpression2;
     columnExpression3.ColumnName  = "phone";
     columnExpression3.Table       = table1;
     column3.Expression            = columnExpression3;
     columnExpression4.ColumnName  = "DateCreated";
     columnExpression4.Table       = table1;
     column4.Expression            = columnExpression4;
     columnExpression5.ColumnName  = "Email";
     columnExpression5.Table       = table1;
     column5.Expression            = columnExpression5;
     columnExpression6.ColumnName  = "RegistrationNumber";
     columnExpression6.Table       = table1;
     column6.Expression            = columnExpression6;
     columnExpression7.ColumnName  = "PayerUtin";
     columnExpression7.Table       = table1;
     column7.Expression            = columnExpression7;
     columnExpression8.ColumnName  = "MerchantCode";
     columnExpression8.Table       = table1;
     column8.Expression            = columnExpression8;
     columnExpression9.ColumnName  = "PayerUtin2";
     columnExpression9.Table       = table1;
     column9.Expression            = columnExpression9;
     columnExpression10.ColumnName = "LGA";
     columnExpression10.Table      = table1;
     column10.Expression           = columnExpression10;
     columnExpression11.ColumnName = "City";
     columnExpression11.Table      = table1;
     column11.Expression           = columnExpression11;
     columnExpression12.ColumnName = "MerchantName";
     columnExpression12.Table      = table1;
     column12.Expression           = columnExpression12;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.Columns.Add(column5);
     selectQuery1.Columns.Add(column6);
     selectQuery1.Columns.Add(column7);
     selectQuery1.Columns.Add(column8);
     selectQuery1.Columns.Add(column9);
     selectQuery1.Columns.Add(column10);
     selectQuery1.Columns.Add(column11);
     selectQuery1.Columns.Add(column12);
     selectQuery1.Name = "ViewCertificateInformation";
     selectQuery1.Tables.Add(table1);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // XtraRepCertifi
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "ViewCertificateInformation";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Margins    = new System.Drawing.Printing.Margins(100, 100, 235, 34);
     this.Version    = "20.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrRichText2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters msSqlConnectionParameters1 = new DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters();
     DevExpress.DataAccess.Sql.SelectQuery          selectQuery1      = new DevExpress.DataAccess.Sql.SelectQuery();
     DevExpress.DataAccess.Sql.Column               column1           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression1 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Table                table6            = new DevExpress.DataAccess.Sql.Table();
     DevExpress.DataAccess.Sql.Column               column2           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression2 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column3           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression3 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column4           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression4 = new DevExpress.DataAccess.Sql.ColumnExpression();
     DevExpress.DataAccess.Sql.Column               column5           = new DevExpress.DataAccess.Sql.Column();
     DevExpress.DataAccess.Sql.ColumnExpression     columnExpression5 = new DevExpress.DataAccess.Sql.ColumnExpression();
     System.ComponentModel.ComponentResourceManager resources         = new System.ComponentModel.ComponentResourceManager(typeof(ZaposleniSaoOsig3));
     this.sqlDataSource1         = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.Title                  = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupCaption1          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupData1             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.GroupFooterBackground3 = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo               = new DevExpress.XtraReports.UI.XRControlStyle();
     this.TopMargin              = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin           = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.ReportHeader           = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.GroupHeader1           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupHeader2           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupHeader3           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupHeader4           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupHeader5           = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.Detail                 = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupFooter1           = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.pageInfo1              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.pageInfo2              = new DevExpress.XtraReports.UI.XRPageInfo();
     this.label1                 = new DevExpress.XtraReports.UI.XRLabel();
     this.table1                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow1              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell1             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell2             = new DevExpress.XtraReports.UI.XRTableCell();
     this.table2                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow2              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell3             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell4             = new DevExpress.XtraReports.UI.XRTableCell();
     this.table3                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow3              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell5             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell6             = new DevExpress.XtraReports.UI.XRTableCell();
     this.table4                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow4              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell7             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell8             = new DevExpress.XtraReports.UI.XRTableCell();
     this.table5                 = new DevExpress.XtraReports.UI.XRTable();
     this.tableRow5              = new DevExpress.XtraReports.UI.XRTableRow();
     this.tableCell9             = new DevExpress.XtraReports.UI.XRTableCell();
     this.tableCell10            = new DevExpress.XtraReports.UI.XRTableCell();
     this.label2                 = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.table5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource1
     //
     this.sqlDataSource1.ConnectionName           = "localhost_DesignSaoOsig1_Connection";
     msSqlConnectionParameters1.AuthorizationType = DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType.Windows;
     msSqlConnectionParameters1.DatabaseName      = "DesignSaoOsig1";
     msSqlConnectionParameters1.ServerName        = "(LocalDb)\\MSSQLLocalDB";
     this.sqlDataSource1.ConnectionParameters     = msSqlConnectionParameters1;
     this.sqlDataSource1.Name     = "sqlDataSource1";
     columnExpression1.ColumnName = "PrezimeIme";
     table6.Name                  = "tblZaposleni_AD";
     columnExpression1.Table      = table6;
     column1.Expression           = columnExpression1;
     columnExpression2.ColumnName = "NetworkLogin";
     columnExpression2.Table      = table6;
     column2.Expression           = columnExpression2;
     columnExpression3.ColumnName = "OrgUnitID";
     columnExpression3.Table      = table6;
     column3.Expression           = columnExpression3;
     columnExpression4.ColumnName = "Status";
     columnExpression4.Table      = table6;
     column4.Expression           = columnExpression4;
     columnExpression5.ColumnName = "SuserSname";
     columnExpression5.Table      = table6;
     column5.Expression           = columnExpression5;
     selectQuery1.Columns.Add(column1);
     selectQuery1.Columns.Add(column2);
     selectQuery1.Columns.Add(column3);
     selectQuery1.Columns.Add(column4);
     selectQuery1.Columns.Add(column5);
     selectQuery1.Name = "tblZaposleni_AD";
     selectQuery1.Tables.Add(table6);
     this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         selectQuery1
     });
     this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Arial", 14.25F);
     this.Title.ForeColor   = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(70)))), ((int)(((byte)(80)))));
     this.Title.Name        = "Title";
     //
     // GroupCaption1
     //
     this.GroupCaption1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(66)))), ((int)(((byte)(79)))));
     this.GroupCaption1.BorderColor   = System.Drawing.Color.White;
     this.GroupCaption1.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupCaption1.BorderWidth   = 2F;
     this.GroupCaption1.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.GroupCaption1.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(228)))), ((int)(((byte)(228)))));
     this.GroupCaption1.Name          = "GroupCaption1";
     this.GroupCaption1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupCaption1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupData1
     //
     this.GroupData1.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(66)))), ((int)(((byte)(79)))));
     this.GroupData1.BorderColor   = System.Drawing.Color.White;
     this.GroupData1.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupData1.BorderWidth   = 2F;
     this.GroupData1.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.GroupData1.ForeColor     = System.Drawing.Color.White;
     this.GroupData1.Name          = "GroupData1";
     this.GroupData1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupData1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // GroupFooterBackground3
     //
     this.GroupFooterBackground3.BackColor     = System.Drawing.Color.FromArgb(((int)(((byte)(109)))), ((int)(((byte)(117)))), ((int)(((byte)(129)))));
     this.GroupFooterBackground3.BorderColor   = System.Drawing.Color.White;
     this.GroupFooterBackground3.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.GroupFooterBackground3.BorderWidth   = 2F;
     this.GroupFooterBackground3.Font          = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.GroupFooterBackground3.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(228)))), ((int)(((byte)(228)))), ((int)(((byte)(228)))));
     this.GroupFooterBackground3.Name          = "GroupFooterBackground3";
     this.GroupFooterBackground3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(6, 2, 0, 0, 100F);
     this.GroupFooterBackground3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // PageInfo
     //
     this.PageInfo.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold);
     this.PageInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(70)))), ((int)(((byte)(80)))));
     this.PageInfo.Name      = "PageInfo";
     this.PageInfo.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // TopMargin
     //
     this.TopMargin.Name = "TopMargin";
     //
     // BottomMargin
     //
     this.BottomMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.pageInfo1,
         this.pageInfo2
     });
     this.BottomMargin.Name = "BottomMargin";
     //
     // ReportHeader
     //
     this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label1
     });
     this.ReportHeader.HeightF = 60F;
     this.ReportHeader.Name    = "ReportHeader";
     //
     // GroupHeader1
     //
     this.GroupHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table1
     });
     this.GroupHeader1.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("SuserSname", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader1.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader1.HeightF    = 27F;
     this.GroupHeader1.Level      = 1;
     this.GroupHeader1.Name       = "GroupHeader1";
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table2
     });
     this.GroupHeader2.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("Status", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader2.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader2.HeightF    = 27F;
     this.GroupHeader2.Level      = 2;
     this.GroupHeader2.Name       = "GroupHeader2";
     //
     // GroupHeader3
     //
     this.GroupHeader3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table3
     });
     this.GroupHeader3.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("OrgUnitID", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader3.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader3.HeightF    = 27F;
     this.GroupHeader3.Level      = 3;
     this.GroupHeader3.Name       = "GroupHeader3";
     //
     // GroupHeader4
     //
     this.GroupHeader4.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table4
     });
     this.GroupHeader4.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("NetworkLogin", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader4.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader4.HeightF    = 27F;
     this.GroupHeader4.Level      = 4;
     this.GroupHeader4.Name       = "GroupHeader4";
     //
     // GroupHeader5
     //
     this.GroupHeader5.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.table5
     });
     this.GroupHeader5.GroupFields.AddRange(new DevExpress.XtraReports.UI.GroupField[] {
         new DevExpress.XtraReports.UI.GroupField("PrezimeIme", DevExpress.XtraReports.UI.XRColumnSortOrder.Ascending)
     });
     this.GroupHeader5.GroupUnion = DevExpress.XtraReports.UI.GroupUnion.WithFirstDetail;
     this.GroupHeader5.HeightF    = 27F;
     this.GroupHeader5.Level      = 5;
     this.GroupHeader5.Name       = "GroupHeader5";
     //
     // Detail
     //
     this.Detail.HeightF = 0F;
     this.Detail.Name    = "Detail";
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.label2
     });
     this.GroupFooter1.GroupUnion = DevExpress.XtraReports.UI.GroupFooterUnion.WithLastDetail;
     this.GroupFooter1.HeightF    = 6F;
     this.GroupFooter1.Name       = "GroupFooter1";
     //
     // pageInfo1
     //
     this.pageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.pageInfo1.Name          = "pageInfo1";
     this.pageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.pageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo1.StyleName     = "PageInfo";
     //
     // pageInfo2
     //
     this.pageInfo2.LocationFloat    = new DevExpress.Utils.PointFloat(331F, 6F);
     this.pageInfo2.Name             = "pageInfo2";
     this.pageInfo2.SizeF            = new System.Drawing.SizeF(313F, 23F);
     this.pageInfo2.StyleName        = "PageInfo";
     this.pageInfo2.TextAlignment    = DevExpress.XtraPrinting.TextAlignment.TopRight;
     this.pageInfo2.TextFormatString = "Page {0} of {1}";
     //
     // label1
     //
     this.label1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.label1.Name          = "label1";
     this.label1.SizeF         = new System.Drawing.SizeF(638F, 24.19433F);
     this.label1.StyleName     = "Title";
     this.label1.Text          = "Izvjestaj Zaposlenih SaoOsig 3";
     //
     // table1
     //
     this.table1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table1.Name          = "table1";
     this.table1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow1
     });
     this.table1.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow1
     //
     this.tableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell1,
         this.tableCell2
     });
     this.tableRow1.Name   = "tableRow1";
     this.tableRow1.Weight = 1D;
     //
     // tableCell1
     //
     this.tableCell1.Name      = "tableCell1";
     this.tableCell1.StyleName = "GroupCaption1";
     this.tableCell1.Text      = "SUSER SNAME";
     this.tableCell1.Weight    = 0.1416012690617488D;
     //
     // tableCell2
     //
     this.tableCell2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[SuserSname]")
     });
     this.tableCell2.Name      = "tableCell2";
     this.tableCell2.StyleName = "GroupData1";
     this.tableCell2.Weight    = 0.85839871920072119D;
     //
     // table2
     //
     this.table2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table2.Name          = "table2";
     this.table2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow2
     });
     this.table2.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow2
     //
     this.tableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell3,
         this.tableCell4
     });
     this.tableRow2.Name   = "tableRow2";
     this.tableRow2.Weight = 1D;
     //
     // tableCell3
     //
     this.tableCell3.Name      = "tableCell3";
     this.tableCell3.StyleName = "GroupCaption1";
     this.tableCell3.Text      = "STATUS";
     this.tableCell3.Weight    = 0.082820504995492789D;
     //
     // tableCell4
     //
     this.tableCell4.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Status]")
     });
     this.tableCell4.Name      = "tableCell4";
     this.tableCell4.StyleName = "GroupData1";
     this.tableCell4.Weight    = 0.91717951847956736D;
     //
     // table3
     //
     this.table3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table3.Name          = "table3";
     this.table3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow3
     });
     this.table3.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow3
     //
     this.tableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell5,
         this.tableCell6
     });
     this.tableRow3.Name   = "tableRow3";
     this.tableRow3.Weight = 1D;
     //
     // tableCell5
     //
     this.tableCell5.Name      = "tableCell5";
     this.tableCell5.StyleName = "GroupCaption1";
     this.tableCell5.Text      = "ORG UNIT ID";
     this.tableCell5.Weight    = 0.12101206852839544D;
     //
     // tableCell6
     //
     this.tableCell6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[OrgUnitID]")
     });
     this.tableCell6.Name      = "tableCell6";
     this.tableCell6.StyleName = "GroupData1";
     this.tableCell6.Weight    = 0.87898794320913465D;
     //
     // table4
     //
     this.table4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table4.Name          = "table4";
     this.table4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow4
     });
     this.table4.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow4
     //
     this.tableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell7,
         this.tableCell8
     });
     this.tableRow4.Name   = "tableRow4";
     this.tableRow4.Weight = 1D;
     //
     // tableCell7
     //
     this.tableCell7.Name      = "tableCell7";
     this.tableCell7.StyleName = "GroupCaption1";
     this.tableCell7.Text      = "NETWORK LOGIN";
     this.tableCell7.Weight    = 0.16409270066481371D;
     //
     // tableCell8
     //
     this.tableCell8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[NetworkLogin]")
     });
     this.tableCell8.Name      = "tableCell8";
     this.tableCell8.StyleName = "GroupData1";
     this.tableCell8.Weight    = 0.83590726412259619D;
     //
     // table5
     //
     this.table5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 2F);
     this.table5.Name          = "table5";
     this.table5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.tableRow5
     });
     this.table5.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // tableRow5
     //
     this.tableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.tableCell9,
         this.tableCell10
     });
     this.tableRow5.Name   = "tableRow5";
     this.tableRow5.Weight = 1D;
     //
     // tableCell9
     //
     this.tableCell9.Name      = "tableCell9";
     this.tableCell9.StyleName = "GroupCaption1";
     this.tableCell9.Text      = "PREZIME IME";
     this.tableCell9.Weight    = 0.12689961360051083D;
     //
     // tableCell10
     //
     this.tableCell10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PrezimeIme]")
     });
     this.tableCell10.Name      = "tableCell10";
     this.tableCell10.StyleName = "GroupData1";
     this.tableCell10.Weight    = 0.87310039813701923D;
     //
     // label2
     //
     this.label2.Borders                  = DevExpress.XtraPrinting.BorderSide.None;
     this.label2.LocationFloat            = new DevExpress.Utils.PointFloat(0F, 0F);
     this.label2.Name                     = "label2";
     this.label2.SizeF                    = new System.Drawing.SizeF(650F, 2.08F);
     this.label2.StyleName                = "GroupFooterBackground3";
     this.label2.StylePriority.UseBorders = false;
     //
     // ZaposleniSaoOsig3
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.GroupHeader1,
         this.GroupHeader2,
         this.GroupHeader3,
         this.GroupHeader4,
         this.GroupHeader5,
         this.Detail,
         this.GroupFooter1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource1
     });
     this.DataMember = "tblZaposleni_AD";
     this.DataSource = this.sqlDataSource1;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.GroupCaption1,
         this.GroupData1,
         this.GroupFooterBackground3,
         this.PageInfo
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.table5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 45
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.topMarginBand1 = new DevExpress.XtraReports.UI.TopMarginBand();
     this.detailBand1 = new DevExpress.XtraReports.UI.DetailBand();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.bindingSource3 = new System.Windows.Forms.BindingSource(this.components);
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // topMarginBand1
     //
     this.topMarginBand1.Name = "topMarginBand1";
     //
     // detailBand1
     //
     this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
     this.xrLabel2,
     this.xrLabel1});
     this.detailBand1.Name = "detailBand1";
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.Name = "bottomMarginBand1";
     //
     // bindingSource3
     //
     this.bindingSource3.DataSource = typeof(anyproject.Form1.Taxi);
     //
     // xrLabel1
     //
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "carType")});
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(170.8333F, 47.91667F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel1.Text = "xrLabel1";
     //
     // xrLabel2
     //
     this.xrLabel2.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
     new DevExpress.XtraReports.UI.XRBinding("Text", null, "carType", "Заказанная машина:")});
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(170.8333F, 10.00001F);
     this.xrLabel2.Name = "xrLabel2";
     this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel2.Text = "xrLabel1";
     //
     // TaxiReport
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
     this.topMarginBand1,
     this.detailBand1,
     this.bottomMarginBand1});
     this.DataSource = this.bindingSource3;
     this.Version = "13.2";
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 46
0
        private void InitializeComponent()
        {
            XRSummary xrSummary1 = new XRSummary();
            XRSummary xrSummary2 = new XRSummary();
            Detail = new DetailBand();
            xrLabel21 = new XRLabel();
            xrLabel20 = new XRLabel();
            xrLabel19 = new XRLabel();
            xrLabel18 = new XRLabel();
            xrLabel26 = new XRLabel();
            TopMargin = new TopMarginBand();
            labelcompany = new XRLabel();
            xrLabel1 = new XRLabel();
            BottomMargin = new BottomMarginBand();
            xrLabel2 = new XRLabel();
            xrLabel3 = new XRLabel();
            xrLabel4 = new XRLabel();
            xrLabel5 = new XRLabel();
            PageHeader = new PageHeaderBand();
            xrLine2 = new XRLine();
            xrLine1 = new XRLine();
            xrLabel32 = new XRLabel();
            lbldoctor = new XRLabel();
            xrLabel23 = new XRLabel();
            xrLabel22 = new XRLabel();
            xrLabel15 = new XRLabel();
            xrLabel29 = new XRLabel();
            xrLabel30 = new XRLabel();
            xrLabel31 = new XRLabel();
            xrLabel16 = new XRLabel();
            xrLabel17 = new XRLabel();
            xrLabel10 = new XRLabel();
            xrLabel9 = new XRLabel();
            xrLabel6 = new XRLabel();
            xrLabel8 = new XRLabel();
            xrLabel7 = new XRLabel();
            ReportFooter = new ReportFooterBand();
            xrLine3 = new XRLine();
            xrLabel34 = new XRLabel();
            xrLabel33 = new XRLabel();
            patdisc = new XRLabel();
            compdiscamt = new XRLabel();
            xrLabel25 = new XRLabel();
            lbldiscount = new XRLabel();
            xrLabel13 = new XRLabel();
            lblpatshare = new XRLabel();
            xrLabel11 = new XRLabel();
            xrLabel24 = new XRLabel();
            xrCrossBandBox1 = new XRCrossBandBox();
            ((ISupportInitialize)(this)).BeginInit();
            // 
            // Detail
            // 
            Detail.Controls.AddRange(new XRControl[] {
            xrLabel21,
            xrLabel20,
            xrLabel19,
            xrLabel18,
            xrLabel26});
            Detail.HeightF = 20F;
            Detail.KeepTogether = true;
            Detail.Name = "Detail";
            Detail.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
            Detail.TextAlignment = TextAlignment.TopLeft;
            // 
            // xrLabel21
            // 
            xrLabel21.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.LINETOTAL", "{0:n2}")});
            xrLabel21.LocationFloat = new PointFloat(625.0834F, 0F);
            xrLabel21.Name = "xrLabel21";
            xrLabel21.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel21.SizeF = new SizeF(72.91669F, 20F);
            xrLabel21.StylePriority.UseTextAlignment = false;
            xrLabel21.Text = "xrLabel21";
            xrLabel21.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrLabel20
            // 
            xrLabel20.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.INVRATE", "{0:n2}")});
            xrLabel20.LocationFloat = new PointFloat(566.1246F, 0F);
            xrLabel20.Name = "xrLabel20";
            xrLabel20.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel20.SizeF = new SizeF(54.16656F, 20F);
            xrLabel20.StylePriority.UseTextAlignment = false;
            xrLabel20.Text = "xrLabel20";
            xrLabel20.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrLabel19
            // 
            xrLabel19.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.QTY", "{0:#,#}")});
            xrLabel19.LocationFloat = new PointFloat(515.2913F, 0F);
            xrLabel19.Name = "xrLabel19";
            xrLabel19.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel19.SizeF = new SizeF(46.62515F, 20F);
            xrLabel19.StylePriority.UseTextAlignment = false;
            xrLabel19.Text = "[SalesInvList.QTY]";
            xrLabel19.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel18
            // 
            xrLabel18.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.ITEMNAME")});
            xrLabel18.LocationFloat = new PointFloat(31.54163F, 0F);
            xrLabel18.Name = "xrLabel18";
            xrLabel18.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel18.SizeF = new SizeF(470.0833F, 20F);
            xrLabel18.StylePriority.UseTextAlignment = false;
            xrLabel18.Text = "xrLabel18";
            xrLabel18.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel26
            // 
            xrLabel26.LocationFloat = new PointFloat(2.083333F, 0F);
            xrLabel26.Name = "xrLabel26";
            xrLabel26.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel26.SizeF = new SizeF(26.33333F, 20F);
            xrLabel26.StylePriority.UseTextAlignment = false;
            xrSummary1.Func = SummaryFunc.RecordNumber;
            xrSummary1.Running = SummaryRunning.Report;
            xrLabel26.Summary = xrSummary1;
            xrLabel26.Text = "xrLabel26";
            xrLabel26.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // TopMargin
            // 
            TopMargin.Controls.AddRange(new XRControl[] {
            labelcompany,
            xrLabel1});
            TopMargin.HeightF = 69F;
            TopMargin.Name = "TopMargin";
            TopMargin.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
            TopMargin.TextAlignment = TextAlignment.TopLeft;
            // 
            // labelcompany
            // 
            labelcompany.Font = new Font("Tahoma", 12F, FontStyle.Bold);
            labelcompany.LocationFloat = new PointFloat(85.41666F, 15.25F);
            labelcompany.Name = "labelcompany";
            labelcompany.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            labelcompany.SizeF = new SizeF(534.8745F, 25.5F);
            labelcompany.StylePriority.UseFont = false;
            labelcompany.StylePriority.UseTextAlignment = false;
            labelcompany.Text = "labelcompany";
            labelcompany.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel1
            // 
            xrLabel1.Borders = ((BorderSide.Left | BorderSide.Top) 
                                | BorderSide.Right) 
                               | BorderSide.Bottom;
            xrLabel1.Font = new Font("Tahoma", 9.75F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel1.LocationFloat = new PointFloat(256.1667F, 43.75F);
            xrLabel1.Name = "xrLabel1";
            xrLabel1.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel1.SizeF = new SizeF(182.7082F, 23.75F);
            xrLabel1.StylePriority.UseBorders = false;
            xrLabel1.StylePriority.UseFont = false;
            xrLabel1.StylePriority.UseTextAlignment = false;
            xrLabel1.Text = "Sales Invoice";
            xrLabel1.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // BottomMargin
            // 
            BottomMargin.HeightF = 25F;
            BottomMargin.Name = "BottomMargin";
            BottomMargin.Padding = new PaddingInfo(0, 0, 0, 0, 100F);
            BottomMargin.TextAlignment = TextAlignment.TopLeft;
            // 
            // xrLabel2
            // 
            xrLabel2.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel2.LocationFloat = new PointFloat(455.6246F, 6F);
            xrLabel2.Name = "xrLabel2";
            xrLabel2.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel2.SizeF = new SizeF(87.5F, 18F);
            xrLabel2.StylePriority.UseFont = false;
            xrLabel2.StylePriority.UseTextAlignment = false;
            xrLabel2.Text = "Invoice No. :";
            xrLabel2.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel3
            // 
            xrLabel3.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel3.LocationFloat = new PointFloat(455.6246F, 30.00002F);
            xrLabel3.Name = "xrLabel3";
            xrLabel3.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel3.SizeF = new SizeF(87.5F, 18F);
            xrLabel3.StylePriority.UseFont = false;
            xrLabel3.StylePriority.UseTextAlignment = false;
            xrLabel3.Text = "Date :";
            xrLabel3.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel4
            // 
            xrLabel4.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel4.LocationFloat = new PointFloat(5.124998F, 6.00001F);
            xrLabel4.Name = "xrLabel4";
            xrLabel4.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel4.SizeF = new SizeF(129.4583F, 18F);
            xrLabel4.StylePriority.UseFont = false;
            xrLabel4.StylePriority.UseTextAlignment = false;
            xrLabel4.Text = "Customer name :";
            xrLabel4.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel5
            // 
            xrLabel5.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel5.LocationFloat = new PointFloat(5.000003F, 30.00002F);
            xrLabel5.Name = "xrLabel5";
            xrLabel5.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel5.SizeF = new SizeF(129.5833F, 18F);
            xrLabel5.StylePriority.UseFont = false;
            xrLabel5.StylePriority.UseTextAlignment = false;
            xrLabel5.Text = "Doctor :";
            xrLabel5.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // PageHeader
            // 
            PageHeader.Controls.AddRange(new XRControl[] {
            xrLine2,
            xrLine1,
            xrLabel32,
            lbldoctor,
            xrLabel23,
            xrLabel22,
            xrLabel4,
            xrLabel15,
            xrLabel5,
            xrLabel29,
            xrLabel30,
            xrLabel31,
            xrLabel3,
            xrLabel2,
            xrLabel16,
            xrLabel17,
            xrLabel10,
            xrLabel9,
            xrLabel6,
            xrLabel8,
            xrLabel7});
            PageHeader.HeightF = 112.4167F;
            PageHeader.Name = "PageHeader";
            // 
            // xrLine2
            // 
            xrLine2.LocationFloat = new PointFloat(3.208333F, 110.4167F);
            xrLine2.Name = "xrLine2";
            xrLine2.SizeF = new SizeF(700.6667F, 2F);
            // 
            // xrLine1
            // 
            xrLine1.LocationFloat = new PointFloat(3.333333F, 86.54166F);
            xrLine1.Name = "xrLine1";
            xrLine1.SizeF = new SizeF(699.3334F, 2F);
            // 
            // xrLabel32
            // 
            xrLabel32.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CARDNO")});
            xrLabel32.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel32.LocationFloat = new PointFloat(543.1246F, 54.00003F);
            xrLabel32.Name = "xrLabel32";
            xrLabel32.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel32.SizeF = new SizeF(154.9586F, 18F);
            xrLabel32.StylePriority.UseFont = false;
            xrLabel32.StylePriority.UseTextAlignment = false;
            xrLabel32.Text = "xrLabel32";
            xrLabel32.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // lbldoctor
            // 
            lbldoctor.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            lbldoctor.LocationFloat = new PointFloat(134.5833F, 30F);
            lbldoctor.Name = "lbldoctor";
            lbldoctor.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            lbldoctor.SizeF = new SizeF(291.6667F, 18F);
            lbldoctor.StylePriority.UseFont = false;
            lbldoctor.StylePriority.UseTextAlignment = false;
            lbldoctor.Text = "lbldoctorname";
            lbldoctor.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel23
            // 
            xrLabel23.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.GRADE")});
            xrLabel23.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel23.LocationFloat = new PointFloat(327.3748F, 54.00003F);
            xrLabel23.Name = "xrLabel23";
            xrLabel23.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel23.SizeF = new SizeF(122.2498F, 18F);
            xrLabel23.StylePriority.UseFont = false;
            xrLabel23.StylePriority.UseTextAlignment = false;
            xrLabel23.Text = "xrLabel23";
            xrLabel23.TextAlignment = TextAlignment.MiddleLeft;
            xrLabel23.Visible = false;
            // 
            // xrLabel22
            // 
            xrLabel22.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CARDID")});
            xrLabel22.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel22.LocationFloat = new PointFloat(134.5833F, 54.00001F);
            xrLabel22.Name = "xrLabel22";
            xrLabel22.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel22.SizeF = new SizeF(142.9167F, 18F);
            xrLabel22.StylePriority.UseFont = false;
            xrLabel22.StylePriority.UseTextAlignment = false;
            xrLabel22.Text = "xrLabel22";
            xrLabel22.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel15
            // 
            xrLabel15.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CUSTNAME")});
            xrLabel15.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel15.LocationFloat = new PointFloat(134.5833F, 5.999994F);
            xrLabel15.Name = "xrLabel15";
            xrLabel15.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel15.SizeF = new SizeF(291.6667F, 18F);
            xrLabel15.StylePriority.UseFont = false;
            xrLabel15.StylePriority.UseTextAlignment = false;
            xrLabel15.Text = "xrLabel15";
            xrLabel15.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel29
            // 
            xrLabel29.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel29.LocationFloat = new PointFloat(455.6246F, 54.00003F);
            xrLabel29.Name = "xrLabel29";
            xrLabel29.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel29.SizeF = new SizeF(87.5F, 18F);
            xrLabel29.StylePriority.UseFont = false;
            xrLabel29.StylePriority.UseTextAlignment = false;
            xrLabel29.Text = "Policy No. :";
            xrLabel29.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel30
            // 
            xrLabel30.Font = new Font("Tahoma", 9.75F);
            xrLabel30.LocationFloat = new PointFloat(280.5832F, 54.00003F);
            xrLabel30.Name = "xrLabel30";
            xrLabel30.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel30.SizeF = new SizeF(46.79153F, 18F);
            xrLabel30.StylePriority.UseFont = false;
            xrLabel30.StylePriority.UseTextAlignment = false;
            xrLabel30.Text = "Class :";
            xrLabel30.TextAlignment = TextAlignment.MiddleLeft;
            xrLabel30.Visible = false;
            // 
            // xrLabel31
            // 
            xrLabel31.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel31.LocationFloat = new PointFloat(4.166667F, 54.00003F);
            xrLabel31.Name = "xrLabel31";
            xrLabel31.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel31.SizeF = new SizeF(130.4166F, 18F);
            xrLabel31.StylePriority.UseFont = false;
            xrLabel31.StylePriority.UseTextAlignment = false;
            xrLabel31.Text = "Member Id / File No. :";
            xrLabel31.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel16
            // 
            xrLabel16.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.SINVNO")});
            xrLabel16.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel16.LocationFloat = new PointFloat(543.1246F, 6.00001F);
            xrLabel16.Name = "xrLabel16";
            xrLabel16.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel16.SizeF = new SizeF(154.8755F, 18F);
            xrLabel16.StylePriority.UseFont = false;
            xrLabel16.StylePriority.UseTextAlignment = false;
            xrLabel16.Text = "xrLabel16";
            xrLabel16.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel17
            // 
            xrLabel17.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.TRANDATE")});
            xrLabel17.Font = new Font("Tahoma", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
            xrLabel17.LocationFloat = new PointFloat(543.1246F, 30.00002F);
            xrLabel17.Name = "xrLabel17";
            xrLabel17.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel17.SizeF = new SizeF(153.8754F, 18F);
            xrLabel17.StylePriority.UseFont = false;
            xrLabel17.StylePriority.UseTextAlignment = false;
            xrLabel17.Text = "xrLabel17";
            xrLabel17.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel10
            // 
            xrLabel10.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel10.LocationFloat = new PointFloat(625.0833F, 88.54166F);
            xrLabel10.Name = "xrLabel10";
            xrLabel10.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel10.SizeF = new SizeF(72.91669F, 19.79166F);
            xrLabel10.StylePriority.UseFont = false;
            xrLabel10.StylePriority.UseTextAlignment = false;
            xrLabel10.Text = "Total";
            xrLabel10.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel9
            // 
            xrLabel9.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel9.LocationFloat = new PointFloat(568.1246F, 88.54166F);
            xrLabel9.Name = "xrLabel9";
            xrLabel9.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel9.SizeF = new SizeF(52.16663F, 19.79166F);
            xrLabel9.StylePriority.UseFont = false;
            xrLabel9.StylePriority.UseTextAlignment = false;
            xrLabel9.Text = "Price";
            xrLabel9.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel6
            // 
            xrLabel6.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel6.LocationFloat = new PointFloat(4.083333F, 88.62505F);
            xrLabel6.Name = "xrLabel6";
            xrLabel6.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel6.SizeF = new SizeF(26.33333F, 19.79166F);
            xrLabel6.StylePriority.UseFont = false;
            xrLabel6.StylePriority.UseTextAlignment = false;
            xrLabel6.Text = "S #";
            xrLabel6.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel8
            // 
            xrLabel8.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel8.LocationFloat = new PointFloat(518.1666F, 88.54166F);
            xrLabel8.Name = "xrLabel8";
            xrLabel8.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel8.SizeF = new SizeF(43.75009F, 19.79166F);
            xrLabel8.StylePriority.UseFont = false;
            xrLabel8.StylePriority.UseTextAlignment = false;
            xrLabel8.Text = "Qty";
            xrLabel8.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // xrLabel7
            // 
            xrLabel7.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel7.LocationFloat = new PointFloat(31.54163F, 88.62505F);
            xrLabel7.Name = "xrLabel7";
            xrLabel7.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel7.SizeF = new SizeF(470.0833F, 19.79167F);
            xrLabel7.StylePriority.UseFont = false;
            xrLabel7.StylePriority.UseTextAlignment = false;
            xrLabel7.Text = "Item name";
            xrLabel7.TextAlignment = TextAlignment.MiddleCenter;
            // 
            // ReportFooter
            // 
            ReportFooter.Controls.AddRange(new XRControl[] {
            xrLine3,
            xrLabel34,
            xrLabel33,
            patdisc,
            compdiscamt,
            xrLabel25,
            lbldiscount,
            xrLabel13,
            lblpatshare,
            xrLabel11,
            xrLabel24});
            ReportFooter.Font = new Font("Tahoma", 9F);
            ReportFooter.HeightF = 81.25003F;
            ReportFooter.KeepTogether = true;
            ReportFooter.Name = "ReportFooter";
            ReportFooter.StylePriority.UseFont = false;
            // 
            // xrLine3
            // 
            xrLine3.LocationFloat = new PointFloat(3.25F, 0F);
            xrLine3.Name = "xrLine3";
            xrLine3.SizeF = new SizeF(699.5833F, 2.083333F);
            // 
            // xrLabel34
            // 
            xrLabel34.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CUSTOMERFIXDISC", "{0:#.00}")});
            xrLabel34.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel34.LocationFloat = new PointFloat(451.5833F, 20.83333F);
            xrLabel34.Name = "xrLabel34";
            xrLabel34.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel34.SizeF = new SizeF(60.25003F, 18F);
            xrLabel34.StylePriority.UseFont = false;
            xrLabel34.StylePriority.UseTextAlignment = false;
            xrLabel34.Text = "xrLabel34";
            xrLabel34.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrLabel33
            // 
            xrLabel33.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CARDDISC", "{0:n2}")});
            xrLabel33.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel33.LocationFloat = new PointFloat(420.9164F, 41.41665F);
            xrLabel33.Name = "xrLabel33";
            xrLabel33.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel33.SizeF = new SizeF(60.25003F, 18F);
            xrLabel33.StylePriority.UseFont = false;
            xrLabel33.StylePriority.UseTextAlignment = false;
            xrLabel33.Text = "xrLabel33";
            xrLabel33.TextAlignment = TextAlignment.MiddleRight;
            // 
            // patdisc
            // 
            patdisc.LocationFloat = new PointFloat(598.75F, 41.62499F);
            patdisc.Name = "patdisc";
            patdisc.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            patdisc.SizeF = new SizeF(95.37476F, 17.79165F);
            patdisc.StylePriority.UseTextAlignment = false;
            patdisc.TextAlignment = TextAlignment.MiddleRight;
            // 
            // compdiscamt
            // 
            compdiscamt.LocationFloat = new PointFloat(598.75F, 20.62499F);
            compdiscamt.Name = "compdiscamt";
            compdiscamt.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            compdiscamt.SizeF = new SizeF(96.24994F, 21F);
            compdiscamt.StylePriority.UseTextAlignment = false;
            compdiscamt.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrLabel25
            // 
            xrLabel25.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.NETAMT", "{0:n2}")});
            xrLabel25.LocationFloat = new PointFloat(598.7499F, 0F);
            xrLabel25.Name = "xrLabel25";
            xrLabel25.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel25.SizeF = new SizeF(98.24994F, 20F);
            xrLabel25.StylePriority.UseTextAlignment = false;
            xrLabel25.Text = "xrLabel25";
            xrLabel25.TextAlignment = TextAlignment.MiddleRight;
            // 
            // lbldiscount
            // 
            lbldiscount.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            lbldiscount.LocationFloat = new PointFloat(511.8333F, 20.83333F);
            lbldiscount.Name = "lbldiscount";
            lbldiscount.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            lbldiscount.SizeF = new SizeF(86.91678F, 21F);
            lbldiscount.StylePriority.UseFont = false;
            lbldiscount.StylePriority.UseTextAlignment = false;
            lbldiscount.Text = "% Discount : ";
            lbldiscount.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel13
            // 
            xrLabel13.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel13.LocationFloat = new PointFloat(509.8332F, 60.41667F);
            xrLabel13.Name = "xrLabel13";
            xrLabel13.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel13.SizeF = new SizeF(87.91675F, 18.79166F);
            xrLabel13.StylePriority.UseFont = false;
            xrLabel13.StylePriority.UseTextAlignment = false;
            xrLabel13.Text = "Net Amount :";
            xrLabel13.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // lblpatshare
            // 
            lblpatshare.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            lblpatshare.LocationFloat = new PointFloat(481.9999F, 40.625F);
            lblpatshare.Name = "lblpatshare";
            lblpatshare.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            lblpatshare.SizeF = new SizeF(116.7501F, 19.79167F);
            lblpatshare.StylePriority.UseFont = false;
            lblpatshare.StylePriority.UseTextAlignment = false;
            lblpatshare.Text = "% Patient Share :";
            lblpatshare.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel11
            // 
            xrLabel11.Font = new Font("Tahoma", 9F, FontStyle.Bold);
            xrLabel11.LocationFloat = new PointFloat(528.5831F, 0.2083461F);
            xrLabel11.Name = "xrLabel11";
            xrLabel11.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel11.SizeF = new SizeF(70.16687F, 19.79166F);
            xrLabel11.StylePriority.UseFont = false;
            xrLabel11.StylePriority.UseTextAlignment = false;
            xrLabel11.Text = "Sub total :";
            xrLabel11.TextAlignment = TextAlignment.MiddleLeft;
            // 
            // xrLabel24
            // 
            xrLabel24.DataBindings.AddRange(new[] {
            new XRBinding("Text", null, "SalesInvList.CREDITAMT", "{0:#.00}")});
            xrLabel24.Font = new Font("Tahoma", 9F, FontStyle.Bold, GraphicsUnit.Point, 0);
            xrLabel24.LocationFloat = new PointFloat(598.7499F, 59.54167F);
            xrLabel24.Name = "xrLabel24";
            xrLabel24.Padding = new PaddingInfo(2, 2, 0, 0, 100F);
            xrLabel24.SizeF = new SizeF(94.24994F, 19.625F);
            xrLabel24.StylePriority.UseFont = false;
            xrLabel24.StylePriority.UseTextAlignment = false;
            xrSummary2.FormatString = "{0:n2}";
            xrLabel24.Summary = xrSummary2;
            xrLabel24.Text = "xrLabel24";
            xrLabel24.TextAlignment = TextAlignment.MiddleRight;
            // 
            // xrCrossBandBox1
            // 
            xrCrossBandBox1.BorderWidth = 1F;
            xrCrossBandBox1.EndBand = PageHeader;
            xrCrossBandBox1.EndPointFloat = new PointFloat(2.083333F, 82.29166F);
            xrCrossBandBox1.LocationFloat = new PointFloat(2.083333F, 0F);
            xrCrossBandBox1.Name = "xrCrossBandBox1";
            xrCrossBandBox1.StartBand = PageHeader;
            xrCrossBandBox1.StartPointFloat = new PointFloat(2.083333F, 0F);
            xrCrossBandBox1.WidthF = 704.1667F;
            // 
            // RptSalesInsurance
            // 
            Bands.AddRange(new Band[] {
            Detail,
            TopMargin,
            BottomMargin,
            PageHeader,
            ReportFooter});
            CrossBandControls.AddRange(new XRCrossBandControl[] {
            xrCrossBandBox1});
            Margins = new Margins(54, 66, 69, 25);
            PageHeight = 1169;
            PageWidth = 827;
            PaperKind = PaperKind.A4;
            ShowPrintMarginsWarning = false;
            SnapToGrid = false;
            Version = "14.1";
            ((ISupportInitialize)(this)).EndInit();

        }
Ejemplo n.º 47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components        = new System.ComponentModel.Container();
     this.Detail            = new DevExpress.XtraReports.UI.DetailBand();
     this.TopMargin         = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin      = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.pageFooterBand1   = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrPageInfo1       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.xrPageInfo2       = new DevExpress.XtraReports.UI.XRPageInfo();
     this.reportHeaderBand1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
     this.xrLabel17         = new DevExpress.XtraReports.UI.XRLabel();
     this.Title             = new DevExpress.XtraReports.UI.XRControlStyle();
     this.FieldCaption      = new DevExpress.XtraReports.UI.XRControlStyle();
     this.PageInfo          = new DevExpress.XtraReports.UI.XRControlStyle();
     this.Normal            = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailReport      = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1           = new DevExpress.XtraReports.UI.DetailBand();
     this.DetailReport1     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail2           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel6          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3          = new DevExpress.XtraReports.UI.XRLabel();
     this.xrControlStyle1   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.xrControlStyle2   = new DevExpress.XtraReports.UI.XRControlStyle();
     this.DetailReport2     = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail3           = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel1          = new DevExpress.XtraReports.UI.XRLabel();
     this.objectDataSource1 = new DevExpress.DataAccess.ObjectBinding.ObjectDataSource(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Dpi           = 100F;
     this.Detail.HeightF       = 23F;
     this.Detail.Name          = "Detail";
     this.Detail.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.StyleName     = "Normal";
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // TopMargin
     //
     this.TopMargin.Dpi           = 100F;
     this.TopMargin.HeightF       = 100F;
     this.TopMargin.Name          = "TopMargin";
     this.TopMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.Dpi           = 100F;
     this.BottomMargin.HeightF       = 100F;
     this.BottomMargin.Name          = "BottomMargin";
     this.BottomMargin.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // pageFooterBand1
     //
     this.pageFooterBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrPageInfo1,
         this.xrPageInfo2
     });
     this.pageFooterBand1.Dpi     = 100F;
     this.pageFooterBand1.HeightF = 29F;
     this.pageFooterBand1.Name    = "pageFooterBand1";
     //
     // xrPageInfo1
     //
     this.xrPageInfo1.Dpi           = 100F;
     this.xrPageInfo1.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrPageInfo1.Name          = "xrPageInfo1";
     this.xrPageInfo1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo1.PageInfo      = DevExpress.XtraPrinting.PageInfo.DateTime;
     this.xrPageInfo1.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo1.StyleName     = "PageInfo";
     //
     // xrPageInfo2
     //
     this.xrPageInfo2.Dpi           = 100F;
     this.xrPageInfo2.Format        = "Page {0} of {1}";
     this.xrPageInfo2.LocationFloat = new DevExpress.Utils.PointFloat(331F, 6F);
     this.xrPageInfo2.Name          = "xrPageInfo2";
     this.xrPageInfo2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrPageInfo2.SizeF         = new System.Drawing.SizeF(313F, 23F);
     this.xrPageInfo2.StyleName     = "PageInfo";
     this.xrPageInfo2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // reportHeaderBand1
     //
     this.reportHeaderBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel17
     });
     this.reportHeaderBand1.Dpi     = 100F;
     this.reportHeaderBand1.HeightF = 53F;
     this.reportHeaderBand1.Name    = "reportHeaderBand1";
     //
     // xrLabel17
     //
     this.xrLabel17.Dpi           = 100F;
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(6F, 6F);
     this.xrLabel17.Name          = "xrLabel17";
     this.xrLabel17.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF         = new System.Drawing.SizeF(638F, 35F);
     this.xrLabel17.StyleName     = "Title";
     this.xrLabel17.Text          = "Monthly Attendance Revised";
     //
     // Title
     //
     this.Title.BackColor   = System.Drawing.Color.Transparent;
     this.Title.BorderColor = System.Drawing.Color.Black;
     this.Title.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.Title.BorderWidth = 1F;
     this.Title.Font        = new System.Drawing.Font("Times New Roman", 21F);
     this.Title.ForeColor   = System.Drawing.Color.Black;
     this.Title.Name        = "Title";
     //
     // FieldCaption
     //
     this.FieldCaption.BackColor   = System.Drawing.Color.Transparent;
     this.FieldCaption.BorderColor = System.Drawing.Color.Black;
     this.FieldCaption.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.FieldCaption.BorderWidth = 1F;
     this.FieldCaption.Font        = new System.Drawing.Font("Times New Roman", 10F);
     this.FieldCaption.ForeColor   = System.Drawing.Color.Black;
     this.FieldCaption.Name        = "FieldCaption";
     //
     // PageInfo
     //
     this.PageInfo.BackColor   = System.Drawing.Color.Transparent;
     this.PageInfo.BorderColor = System.Drawing.Color.Black;
     this.PageInfo.Borders     = DevExpress.XtraPrinting.BorderSide.None;
     this.PageInfo.BorderWidth = 1F;
     this.PageInfo.Font        = new System.Drawing.Font("Arial", 8F);
     this.PageInfo.ForeColor   = System.Drawing.Color.Black;
     this.PageInfo.Name        = "PageInfo";
     //
     // Normal
     //
     this.Normal.BackColor       = System.Drawing.Color.Transparent;
     this.Normal.BorderColor     = System.Drawing.Color.Black;
     this.Normal.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.Normal.Borders         = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.Normal.BorderWidth = 1F;
     this.Normal.Font        = new System.Drawing.Font("Arial", 9F);
     this.Normal.ForeColor   = System.Drawing.Color.Black;
     this.Normal.Name        = "Normal";
     this.Normal.Padding     = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.DetailReport1,
         this.DetailReport2
     });
     this.DetailReport.DataMember = "MonthlyEmployeeAttendance";
     this.DetailReport.DataSource = this.objectDataSource1;
     this.DetailReport.Dpi        = 100F;
     this.DetailReport.Level      = 0;
     this.DetailReport.Name       = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Dpi     = 100F;
     this.Detail1.HeightF = 28.125F;
     this.Detail1.MultiColumn.ColumnCount = 4;
     this.Detail1.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail1.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
     this.Detail1.Name = "Detail1";
     //
     // DetailReport1
     //
     this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2
     });
     this.DetailReport1.DataMember = "MonthlyEmployeeAttendance.Attendances";
     this.DetailReport1.DataSource = this.objectDataSource1;
     this.DetailReport1.Dpi        = 100F;
     this.DetailReport1.Level      = 1;
     this.DetailReport1.Name       = "DetailReport1";
     //
     // Detail2
     //
     this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel3,
         this.xrLabel4,
         this.xrLabel5,
         this.xrLabel6
     });
     this.Detail2.Dpi     = 100F;
     this.Detail2.HeightF = 69.0834F;
     this.Detail2.MultiColumn.ColumnCount = 30;
     this.Detail2.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail2.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
     this.Detail2.Name = "Detail2";
     //
     // xrLabel6
     //
     this.xrLabel6.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonthlyEmployeeAttendance.Attendances.workingTime")
     });
     this.xrLabel6.Dpi           = 100F;
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(129.9583F, 46.00003F);
     this.xrLabel6.Name          = "xrLabel6";
     this.xrLabel6.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel6.StyleName     = "Normal";
     this.xrLabel6.Text          = "xrLabel6";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonthlyEmployeeAttendance.Attendances.timeOut")
     });
     this.xrLabel5.Dpi           = 100F;
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(129.9583F, 23.00002F);
     this.xrLabel5.Name          = "xrLabel5";
     this.xrLabel5.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel5.StyleName     = "Normal";
     this.xrLabel5.Text          = "xrLabel5";
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonthlyEmployeeAttendance.Attendances.timeIn")
     });
     this.xrLabel4.Dpi           = 100F;
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(129.9583F, 0F);
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel4.StyleName     = "Normal";
     this.xrLabel4.Text          = "xrLabel4";
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "Name")
     });
     this.xrLabel3.Dpi                   = 100F;
     this.xrLabel3.LocationFloat         = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLabel3.Name                  = "xrLabel3";
     this.xrLabel3.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.ProcessDuplicatesMode = DevExpress.XtraReports.UI.ProcessDuplicatesMode.Suppress;
     this.xrLabel3.SizeF                 = new System.Drawing.SizeF(100F, 69.00005F);
     this.xrLabel3.StyleName             = "Normal";
     this.xrLabel3.Text                  = "xrLabel3";
     //
     // xrControlStyle1
     //
     this.xrControlStyle1.Name    = "xrControlStyle1";
     this.xrControlStyle1.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     //
     // xrControlStyle2
     //
     this.xrControlStyle2.Name = "xrControlStyle2";
     //
     // DetailReport2
     //
     this.DetailReport2.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail3
     });
     this.DetailReport2.DataMember = "MonthlyEmployeeAttendance.Days";
     this.DetailReport2.DataSource = this.objectDataSource1;
     this.DetailReport2.Dpi        = 100F;
     this.DetailReport2.Level      = 0;
     this.DetailReport2.Name       = "DetailReport2";
     //
     // Detail3
     //
     this.Detail3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel1
     });
     this.Detail3.Dpi     = 100F;
     this.Detail3.HeightF = 100F;
     this.Detail3.MultiColumn.ColumnCount = 30;
     this.Detail3.MultiColumn.Layout      = DevExpress.XtraPrinting.ColumnLayout.AcrossThenDown;
     this.Detail3.MultiColumn.Mode        = DevExpress.XtraReports.UI.MultiColumnMode.UseColumnCount;
     this.Detail3.Name = "Detail3";
     //
     // xrLabel1
     //
     this.xrLabel1.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "MonthlyEmployeeAttendance.Days.DayNumber")
     });
     this.xrLabel1.Dpi           = 100F;
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(129.9583F, 0F);
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel1.Text          = "xrLabel1";
     //
     // objectDataSource1
     //
     this.objectDataSource1.DataSource = typeof(AionHR.Model.Reports.EmployeeMonthlyCollection);
     this.objectDataSource1.Name       = "objectDataSource1";
     //
     // MonthlyAttendanceRevised
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.pageFooterBand1,
         this.reportHeaderBand1,
         this.DetailReport
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.objectDataSource1
     });
     this.DataSource = this.objectDataSource1;
     this.Margins    = new System.Drawing.Printing.Margins(0, 3, 100, 100);
     this.PageHeight = 4400;
     this.PageWidth  = 3400;
     this.PaperKind  = System.Drawing.Printing.PaperKind.ESheet;
     this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
         this.Title,
         this.FieldCaption,
         this.PageInfo,
         this.Normal,
         this.xrControlStyle1,
         this.xrControlStyle2
     });
     this.Version = "16.2";
     ((System.ComponentModel.ISupportInitialize)(this.objectDataSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "rptMultiInvoicesToPrint.resx";
     DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
     this.Detail = new DevExpress.XtraReports.UI.DetailBand();
     this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable7 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
     this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
     this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageHeader = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.header = new DevExpress.XtraReports.UI.XRSubreport();
     this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrOrderNum = new DevExpress.XtraReports.UI.XRTableCell();
     this.colHangHoa = new DevExpress.XtraReports.UI.XRTableCell();
     this.colDonVi = new DevExpress.XtraReports.UI.XRTableCell();
     this.colSoLuong = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrSum = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrPercent = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrDiscount = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrPayment = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
     this.lbchu = new DevExpress.XtraReports.UI.XRLabel();
     this.GroupFooter2 = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrPageBreak1 = new DevExpress.XtraReports.UI.XRPageBreak();
     this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
     this.dsMultiInvoicesToPrint1 = new dsMultiInvoicesToPrint();
     this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
     this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
     this.GroupHeader2 = new DevExpress.XtraReports.UI.GroupHeaderBand();
     this.GroupFooter3 = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
     this.invoicesSelectByWhereTableAdapter1 = new dsMultiInvoicesToPrintTableAdapters.InvoicesSelectByWhereTableAdapter();
     this.productsInInvoicesSelectByWhereTableAdapter1 = new dsMultiInvoicesToPrintTableAdapters.ProductsInInvoicesSelectByWhereTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsMultiInvoicesToPrint1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel10,
         this.xrLabel13,
         this.xrTable7,
         this.header});
     this.Detail.HeightF = 106.2084F;
     this.Detail.Name = "Detail";
     this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // xrLabel10
     //
     this.xrLabel10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoiceNo", "Số: {0}")});
     this.xrLabel10.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(2.041523F, 27.50006F);
     this.xrLabel10.Name = "xrLabel10";
     this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF = new System.Drawing.SizeF(738.9999F, 16F);
     this.xrLabel10.StylePriority.UseFont = false;
     this.xrLabel10.StylePriority.UseTextAlignment = false;
     this.xrLabel10.Text = "xrLabel10";
     this.xrLabel10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopRight;
     //
     // xrLabel13
     //
     this.xrLabel13.Font = new System.Drawing.Font("Times New Roman", 12.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(0.9580771F, 43.50004F);
     this.xrLabel13.Name = "xrLabel13";
     this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF = new System.Drawing.SizeF(746.9168F, 20F);
     this.xrLabel13.StylePriority.UseFont = false;
     this.xrLabel13.StylePriority.UseTextAlignment = false;
     this.xrLabel13.Text = "HOÁ ĐƠN BÁN HÀNG";
     this.xrLabel13.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTable7
     //
     this.xrTable7.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTable7.LocationFloat = new DevExpress.Utils.PointFloat(9.999903F, 70.20839F);
     this.xrTable7.Name = "xrTable7";
     this.xrTable7.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow8,
         this.xrTableRow9});
     this.xrTable7.SizeF = new System.Drawing.SizeF(731.7083F, 36F);
     this.xrTable7.StylePriority.UseFont = false;
     this.xrTable7.StylePriority.UseTextAlignment = false;
     this.xrTable7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     //
     // xrTableRow8
     //
     this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell6,
         this.xrTableCell23,
         this.xrTableCell25,
         this.xrTableCell24,
         this.xrTableCell7,
         this.xrTableCell19});
     this.xrTableRow8.Name = "xrTableRow8";
     this.xrTableRow8.Weight = 1D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell6.Name = "xrTableCell6";
     this.xrTableCell6.StylePriority.UseFont = false;
     this.xrTableCell6.StylePriority.UseTextAlignment = false;
     this.xrTableCell6.Text = "Khách hàng: ";
     this.xrTableCell6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell6.Weight = 0.76041707714783124D;
     //
     // xrTableCell23
     //
     this.xrTableCell23.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Customer")});
     this.xrTableCell23.Name = "xrTableCell23";
     this.xrTableCell23.Text = "xrTableCell23";
     this.xrTableCell23.Weight = 1.6354165423495146D;
     //
     // xrTableCell25
     //
     this.xrTableCell25.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell25.Name = "xrTableCell25";
     this.xrTableCell25.StylePriority.UseFont = false;
     this.xrTableCell25.StylePriority.UseTextAlignment = false;
     this.xrTableCell25.Text = "Điện thoại:";
     this.xrTableCell25.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell25.Weight = 0.62583404093619488D;
     //
     // xrTableCell24
     //
     this.xrTableCell24.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Phone")});
     this.xrTableCell24.Name = "xrTableCell24";
     this.xrTableCell24.Text = "xrTableCell24";
     this.xrTableCell24.Weight = 1.1164577939005926D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell7.Name = "xrTableCell7";
     this.xrTableCell7.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
     this.xrTableCell7.StylePriority.UseFont = false;
     this.xrTableCell7.StylePriority.UsePadding = false;
     this.xrTableCell7.Text = "Địa chỉ: ";
     this.xrTableCell7.Weight = 0.51395781087784642D;
     //
     // xrTableCell19
     //
     this.xrTableCell19.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.CustomerAddress")});
     this.xrTableCell19.Name = "xrTableCell19";
     this.xrTableCell19.Text = "xrTableCell19";
     this.xrTableCell19.Weight = 2.6649996045159052D;
     //
     // xrTableRow9
     //
     this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell26,
         this.xrTableCell27,
         this.xrTableCell28,
         this.xrTableCell29});
     this.xrTableRow9.Name = "xrTableRow9";
     this.xrTableRow9.Weight = 1D;
     //
     // xrTableCell26
     //
     this.xrTableCell26.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell26.Name = "xrTableCell26";
     this.xrTableCell26.StylePriority.UseFont = false;
     this.xrTableCell26.Text = "Địa chỉ: ";
     this.xrTableCell26.Weight = 0.76041707714783124D;
     //
     // xrTableCell27
     //
     this.xrTableCell27.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.DeliveryAddress")});
     this.xrTableCell27.Name = "xrTableCell27";
     this.xrTableCell27.Text = "xrTableCell27";
     this.xrTableCell27.Weight = 3.377708655696229D;
     //
     // xrTableCell28
     //
     this.xrTableCell28.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell28.Name = "xrTableCell28";
     this.xrTableCell28.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 0, 0, 0, 100F);
     this.xrTableCell28.StylePriority.UseFont = false;
     this.xrTableCell28.StylePriority.UsePadding = false;
     this.xrTableCell28.Text = "Ngày: ";
     this.xrTableCell28.Weight = 0.51395721385922755D;
     //
     // xrTableCell29
     //
     this.xrTableCell29.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.CurrentDate", "{0:dd/MM/yyyy}")});
     this.xrTableCell29.Name = "xrTableCell29";
     this.xrTableCell29.Text = "xrTableCell29";
     this.xrTableCell29.Weight = 2.664999923024598D;
     //
     // xrTable1
     //
     this.xrTable1.BackColor = System.Drawing.Color.Snow;
     this.xrTable1.BorderColor = System.Drawing.Color.Black;
     this.xrTable1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable1.BorderWidth = 1;
     this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable1.Name = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1});
     this.xrTable1.SizeF = new System.Drawing.SizeF(749.5835F, 25F);
     this.xrTable1.StylePriority.UseBackColor = false;
     this.xrTable1.StylePriority.UseBorderColor = false;
     this.xrTable1.StylePriority.UseBorders = false;
     this.xrTable1.StylePriority.UseBorderWidth = false;
     this.xrTable1.StylePriority.UseFont = false;
     this.xrTable1.StylePriority.UseTextAlignment = false;
     this.xrTable1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell22,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell21,
         this.xrTableCell20,
         this.xrTableCell17,
         this.xrTableCell5});
     this.xrTableRow1.Name = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell1.Name = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorders = false;
     this.xrTableCell1.StylePriority.UseTextAlignment = false;
     this.xrTableCell1.Text = "STT";
     this.xrTableCell1.Weight = 0.36560024648643036D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell2.Name = "xrTableCell2";
     this.xrTableCell2.StylePriority.UseBorders = false;
     this.xrTableCell2.Text = "Tên Hàng Hoá";
     this.xrTableCell2.Weight = 2.3565548083905545D;
     //
     // xrTableCell22
     //
     this.xrTableCell22.Name = "xrTableCell22";
     this.xrTableCell22.Text = "Trọng lượng";
     this.xrTableCell22.Weight = 0.78342919997407734D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell3.Name = "xrTableCell3";
     this.xrTableCell3.StylePriority.UseBorders = false;
     this.xrTableCell3.Text = "ĐVT";
     this.xrTableCell3.Weight = 0.47005750662449247D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell4.Name = "xrTableCell4";
     this.xrTableCell4.StylePriority.UseBorders = false;
     this.xrTableCell4.Text = "Đơn giá bán";
     this.xrTableCell4.Weight = 0.78969598039839828D;
     //
     // xrTableCell21
     //
     this.xrTableCell21.Name = "xrTableCell21";
     this.xrTableCell21.StylePriority.UseTextAlignment = false;
     this.xrTableCell21.Text = "Số lượng bán";
     this.xrTableCell21.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     this.xrTableCell21.Weight = 0.85288598746242816D;
     //
     // xrTableCell20
     //
     this.xrTableCell20.Name = "xrTableCell20";
     this.xrTableCell20.Text = "Tặng";
     this.xrTableCell20.Weight = 0.44682014695324773D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                 | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseBorders = false;
     this.xrTableCell5.Text = "Thành tiền";
     this.xrTableCell5.Weight = 1.0048792922737211D;
     //
     // TopMargin
     //
     this.TopMargin.HeightF = 20F;
     this.TopMargin.Name = "TopMargin";
     this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // BottomMargin
     //
     this.BottomMargin.HeightF = 0F;
     this.BottomMargin.Name = "BottomMargin";
     this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
     //
     // PageHeader
     //
     this.PageHeader.HeightF = 5.625057F;
     this.PageHeader.Name = "PageHeader";
     //
     // header
     //
     this.header.LocationFloat = new DevExpress.Utils.PointFloat(2.041523F, 0F);
     this.header.Name = "header";
     this.header.SizeF = new System.Drawing.SizeF(748.9584F, 27.50006F);
     //
     // xrTable2
     //
     this.xrTable2.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable2.BorderWidth = 1;
     this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2});
     this.xrTable2.SizeF = new System.Drawing.SizeF(749.5835F, 20F);
     this.xrTable2.StylePriority.UseBorderDashStyle = false;
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UseBorderWidth = false;
     this.xrTable2.StylePriority.UseFont = false;
     this.xrTable2.StylePriority.UseTextAlignment = false;
     this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrOrderNum,
         this.colHangHoa,
         this.colDonVi,
         this.colSoLuong,
         this.xrTableCell11,
         this.xrTableCell30,
         this.xrTableCell12,
         this.xrTableCell35,
         this.xrTableCell31});
     this.xrTableRow2.Name = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrOrderNum
     //
     this.xrOrderNum.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrOrderNum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.RowIn" +
                 "dex")});
     this.xrOrderNum.Name = "xrOrderNum";
     this.xrOrderNum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrOrderNum.StylePriority.UseBorders = false;
     this.xrOrderNum.StylePriority.UsePadding = false;
     this.xrOrderNum.StylePriority.UseTextAlignment = false;
     this.xrOrderNum.Text = "xrOrderNum";
     this.xrOrderNum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrOrderNum.Weight = 0.36458328247070315D;
     //
     // colHangHoa
     //
     this.colHangHoa.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.colHangHoa.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.produ" +
                 "ctname")});
     this.colHangHoa.Name = "colHangHoa";
     this.colHangHoa.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.colHangHoa.StylePriority.UseBorders = false;
     this.colHangHoa.StylePriority.UsePadding = false;
     this.colHangHoa.StylePriority.UseTextAlignment = false;
     this.colHangHoa.Text = "colHangHoa";
     this.colHangHoa.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.colHangHoa.Weight = 2.3499999233670534D;
     //
     // colDonVi
     //
     this.colDonVi.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.colDonVi.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Style" +
                 "")});
     this.colDonVi.Name = "colDonVi";
     this.colDonVi.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.colDonVi.StylePriority.UseBorders = false;
     this.colDonVi.StylePriority.UsePadding = false;
     this.colDonVi.Text = "colDonVi";
     this.colDonVi.Weight = 0.78125038790315038D;
     //
     // colSoLuong
     //
     this.colSoLuong.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.colSoLuong.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Unit")});
     this.colSoLuong.Name = "colSoLuong";
     this.colSoLuong.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.colSoLuong.StylePriority.UseBorders = false;
     this.colSoLuong.StylePriority.UsePadding = false;
     this.colSoLuong.Text = "colSoLuong";
     this.colSoLuong.Weight = 0.46875033858450066D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Curre" +
                 "ntPrice", "{0:n0}")});
     this.xrTableCell11.Name = "xrTableCell11";
     this.xrTableCell11.Padding = new DevExpress.XtraPrinting.PaddingInfo(5, 5, 0, 0, 100F);
     this.xrTableCell11.StylePriority.UseBorders = false;
     this.xrTableCell11.StylePriority.UsePadding = false;
     this.xrTableCell11.StylePriority.UseTextAlignment = false;
     xrSummary1.FormatString = "{0:0.00 VND}";
     this.xrTableCell11.Summary = xrSummary1;
     this.xrTableCell11.Text = "xrTableCell11";
     this.xrTableCell11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell11.Weight = 0.78749918670705688D;
     //
     // xrTableCell30
     //
     this.xrTableCell30.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Quant" +
                 "ity", "{0:n0}")});
     this.xrTableCell30.Name = "xrTableCell30";
     this.xrTableCell30.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell30.StylePriority.UsePadding = false;
     this.xrTableCell30.StylePriority.UseTextAlignment = false;
     this.xrTableCell30.Text = "xrTableCell30";
     this.xrTableCell30.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell30.Weight = 0.85051490427718135D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell12.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Bonus" +
                 "", "{0:n0}")});
     this.xrTableCell12.Name = "xrTableCell12";
     this.xrTableCell12.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell12.StylePriority.UseBorders = false;
     this.xrTableCell12.StylePriority.UsePadding = false;
     this.xrTableCell12.StylePriority.UseTextAlignment = false;
     this.xrTableCell12.Text = "xrTableCell12";
     this.xrTableCell12.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell12.Weight = 0.4455766067495005D;
     //
     // xrTableCell31
     //
     this.xrTableCell31.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Total" +
                 "", "{0:n0}")});
     this.xrTableCell31.Name = "xrTableCell31";
     this.xrTableCell31.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell31.StylePriority.UsePadding = false;
     this.xrTableCell31.StylePriority.UseTextAlignment = false;
     this.xrTableCell31.Text = "[InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Total]";
     this.xrTableCell31.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell31.Weight = 1.0020843341075598D;
     //
     // xrLabel4
     //
     this.xrLabel4.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Notes")});
     this.xrLabel4.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Italic);
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(9.041818F, 111.7916F);
     this.xrLabel4.Name = "xrLabel4";
     this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF = new System.Drawing.SizeF(578.4171F, 16F);
     this.xrLabel4.StylePriority.UseFont = false;
     this.xrLabel4.Text = "xrLabel4";
     //
     // xrTable3
     //
     this.xrTable3.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
     this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable3.BorderWidth = 1;
     this.xrTable3.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable3.Name = "xrTable3";
     this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow3,
         this.xrTableRow4,
         this.xrTableRow5});
     this.xrTable3.SizeF = new System.Drawing.SizeF(749.5835F, 60F);
     this.xrTable3.StylePriority.UseBorderDashStyle = false;
     this.xrTable3.StylePriority.UseBorders = false;
     this.xrTable3.StylePriority.UseBorderWidth = false;
     this.xrTable3.StylePriority.UseFont = false;
     this.xrTable3.StylePriority.UseTextAlignment = false;
     this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow3
     //
     this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell14,
         this.xrTableCell10,
         this.xrSum});
     this.xrTableRow3.Name = "xrTableRow3";
     this.xrTableRow3.Weight = 1D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.Name = "xrTableCell14";
     this.xrTableCell14.Weight = 5.6337398317540881D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                 | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell10.Name = "xrTableCell10";
     this.xrTableCell10.StylePriority.UseBorders = false;
     this.xrTableCell10.StylePriority.UseTextAlignment = false;
     this.xrTableCell10.Weight = 0.89610777590259483D;
     //
     // xrSum
     //
     this.xrSum.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.FinalTotal", "{0:n0}")});
     this.xrSum.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrSum.Name = "xrSum";
     this.xrSum.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrSum.StylePriority.UseFont = false;
     this.xrSum.StylePriority.UsePadding = false;
     this.xrSum.StylePriority.UseTextAlignment = false;
     xrSummary2.FormatString = "{0:n0}";
     this.xrSum.Summary = xrSummary2;
     this.xrSum.Text = "xrSum";
     this.xrSum.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrSum.Weight = 1.0076542233980046D;
     //
     // xrTableRow4
     //
     this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell18,
         this.xrPercent,
         this.xrTableCell13,
         this.xrDiscount});
     this.xrTableRow4.Name = "xrTableRow4";
     this.xrTableRow4.Weight = 1D;
     //
     // xrTableCell18
     //
     this.xrTableCell18.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell18.Name = "xrTableCell18";
     this.xrTableCell18.StylePriority.UseFont = false;
     this.xrTableCell18.Text = "Chiết khấu:";
     this.xrTableCell18.Weight = 4.7784974502941386D;
     //
     // xrPercent
     //
     this.xrPercent.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrPercent.Name = "xrPercent";
     this.xrPercent.StylePriority.UseFont = false;
     this.xrPercent.StylePriority.UseTextAlignment = false;
     this.xrPercent.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPercent.Weight = 0.855243157122188D;
     this.xrPercent.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.xrPercent_BeforePrint);
     //
     // xrTableCell13
     //
     this.xrTableCell13.Name = "xrTableCell13";
     this.xrTableCell13.Weight = 0.89610592194689409D;
     //
     // xrDiscount
     //
     this.xrDiscount.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Discount", "{0:n0}")});
     this.xrDiscount.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrDiscount.Name = "xrDiscount";
     this.xrDiscount.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrDiscount.StylePriority.UseFont = false;
     this.xrDiscount.StylePriority.UsePadding = false;
     this.xrDiscount.StylePriority.UseTextAlignment = false;
     this.xrDiscount.Text = "xrDiscount";
     this.xrDiscount.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrDiscount.Weight = 1.0076553016914669D;
     //
     // xrTableRow5
     //
     this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell32,
         this.xrTableCell36,
         this.xrTableCell34,
         this.xrPayment});
     this.xrTableRow5.Name = "xrTableRow5";
     this.xrTableRow5.Weight = 1D;
     //
     // xrTableCell32
     //
     this.xrTableCell32.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrTableCell32.Name = "xrTableCell32";
     this.xrTableCell32.StylePriority.UseFont = false;
     this.xrTableCell32.Text = "Số tiền phải thanh toán:";
     this.xrTableCell32.Weight = 4.7784974502941386D;
     //
     // xrTableCell36
     //
     this.xrTableCell36.Name = "xrTableCell36";
     this.xrTableCell36.Weight = 0.85524315712218835D;
     //
     // xrTableCell34
     //
     this.xrTableCell34.Name = "xrTableCell34";
     this.xrTableCell34.Weight = 0.89610592533963673D;
     //
     // xrPayment
     //
     this.xrPayment.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Payment", "{0:n0}")});
     this.xrPayment.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrPayment.Name = "xrPayment";
     this.xrPayment.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrPayment.StylePriority.UseFont = false;
     this.xrPayment.StylePriority.UsePadding = false;
     this.xrPayment.StylePriority.UseTextAlignment = false;
     this.xrPayment.Text = "[InvoicesSelectByWhere.Payment]";
     this.xrPayment.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrPayment.Weight = 1.0076552982987241D;
     //
     // xrLabel20
     //
     this.xrLabel20.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel20.LocationFloat = new DevExpress.Utils.PointFloat(592.0837F, 132.7916F);
     this.xrLabel20.Name = "xrLabel20";
     this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel20.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel20.StylePriority.UseFont = false;
     this.xrLabel20.StylePriority.UseTextAlignment = false;
     this.xrLabel20.Text = "Nhân viên bán hàng";
     this.xrLabel20.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel17
     //
     this.xrLabel17.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel17.LocationFloat = new DevExpress.Utils.PointFloat(8.208816F, 91.79157F);
     this.xrLabel17.Name = "xrLabel17";
     this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel17.SizeF = new System.Drawing.SizeF(64.58333F, 16.00001F);
     this.xrLabel17.StylePriority.UseFont = false;
     this.xrLabel17.Text = "Ghi chú: ";
     //
     // xrLabel5
     //
     this.xrLabel5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Seller")});
     this.xrLabel5.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel5.LocationFloat = new DevExpress.Utils.PointFloat(592.0837F, 192.5001F);
     this.xrLabel5.Name = "xrLabel5";
     this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF = new System.Drawing.SizeF(130F, 16.00002F);
     this.xrLabel5.StylePriority.UseFont = false;
     this.xrLabel5.StylePriority.UseTextAlignment = false;
     this.xrLabel5.Text = "xrLabel5";
     this.xrLabel5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel3
     //
     this.xrLabel3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.SellerPhone")});
     this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(593.0836F, 208.5001F);
     this.xrLabel3.Name = "xrLabel3";
     this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF = new System.Drawing.SizeF(129.0001F, 16F);
     this.xrLabel3.StylePriority.UseFont = false;
     this.xrLabel3.StylePriority.UseTextAlignment = false;
     this.xrLabel3.Text = "xrLabel3";
     this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrTable6
     //
     this.xrTable6.Borders = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTable6.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 60.00001F);
     this.xrTable6.Name = "xrTable6";
     this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow6});
     this.xrTable6.SizeF = new System.Drawing.SizeF(750F, 20F);
     this.xrTable6.StylePriority.UseBorders = false;
     this.xrTable6.StylePriority.UseFont = false;
     this.xrTable6.StylePriority.UseTextAlignment = false;
     this.xrTable6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
     //
     // xrTableRow6
     //
     this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell8,
         this.xrTableCell9});
     this.xrTableRow6.Name = "xrTableRow6";
     this.xrTableRow6.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Font = new System.Drawing.Font("Times New Roman", 9F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseFont = false;
     this.xrTableCell8.StylePriority.UseTextAlignment = false;
     this.xrTableCell8.Text = "Tổng tiền (bằng chữ):";
     this.xrTableCell8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell8.Weight = 1.0847216847737626D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.lbchu});
     this.xrTableCell9.Font = new System.Drawing.Font("Times New Roman", 9F);
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseFont = false;
     this.xrTableCell9.StylePriority.UseTextAlignment = false;
     xrSummary3.FormatString = "{0:0.00 VND}";
     this.xrTableCell9.Summary = xrSummary3;
     this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
     this.xrTableCell9.Weight = 5.4152783152262369D;
     //
     // lbchu
     //
     this.lbchu.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.lbchu.Name = "lbchu";
     this.lbchu.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.lbchu.SizeF = new System.Drawing.SizeF(623.7981F, 20F);
     this.lbchu.BeforePrint += new System.Drawing.Printing.PrintEventHandler(this.lbchu_BeforePrint);
     //
     // GroupFooter2
     //
     this.GroupFooter2.HeightF = 20.45835F;
     this.GroupFooter2.Name = "GroupFooter2";
     //
     // xrLabel6
     //
     this.xrLabel6.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel6.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 132.7916F);
     this.xrLabel6.Name = "xrLabel6";
     this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel6.StylePriority.UseFont = false;
     this.xrLabel6.StylePriority.UseTextAlignment = false;
     this.xrLabel6.Text = "Nhân viên giao hàng";
     this.xrLabel6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel8
     //
     this.xrLabel8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.DeliverPhone")});
     this.xrLabel8.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 208.5001F);
     this.xrLabel8.Name = "xrLabel8";
     this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel8.StylePriority.UseFont = false;
     this.xrLabel8.StylePriority.UseTextAlignment = false;
     this.xrLabel8.Text = "xrLabel8";
     this.xrLabel8.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel7
     //
     this.xrLabel7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "sale_InvoiceToPrint.Deliver")});
     this.xrLabel7.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(312.1668F, 192.5001F);
     this.xrLabel7.Name = "xrLabel7";
     this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel7.StylePriority.UseFont = false;
     this.xrLabel7.StylePriority.UseTextAlignment = false;
     this.xrLabel7.Text = "xrLabel7";
     this.xrLabel7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel1
     //
     this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Italic);
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(72.79218F, 91.79156F);
     this.xrLabel1.Name = "xrLabel1";
     this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF = new System.Drawing.SizeF(514.6667F, 16F);
     this.xrLabel1.StylePriority.UseFont = false;
     this.xrLabel1.Text = "- Vui lòng kiểm tra kỹ hàng trước khi nhận. Nhân viên bán hàng không được nhận ti" +
         "ền và hàng hóa.";
     //
     // xrPageBreak1
     //
     this.xrPageBreak1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 238F);
     this.xrPageBreak1.Name = "xrPageBreak1";
     //
     // xrLabel9
     //
     this.xrLabel9.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(86.0417F, 132.7916F);
     this.xrLabel9.Name = "xrLabel9";
     this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel9.StylePriority.UseFont = false;
     this.xrLabel9.StylePriority.UseTextAlignment = false;
     this.xrLabel9.Text = "Khách hàng";
     this.xrLabel9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // xrLabel11
     //
     this.xrLabel11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.Customer")});
     this.xrLabel11.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(86.0417F, 208.5001F);
     this.xrLabel11.Name = "xrLabel11";
     this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF = new System.Drawing.SizeF(130F, 16F);
     this.xrLabel11.StylePriority.UseFont = false;
     this.xrLabel11.StylePriority.UseTextAlignment = false;
     this.xrLabel11.Text = "xrLabel11";
     this.xrLabel11.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     //
     // dsMultiInvoicesToPrint1
     //
     this.dsMultiInvoicesToPrint1.DataSetName = "dsMultiInvoicesToPrint";
     this.dsMultiInvoicesToPrint1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // DetailReport
     //
     this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.GroupHeader2,
         this.GroupFooter3});
     this.DetailReport.DataMember = "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere";
     this.DetailReport.DataSource = this.dsMultiInvoicesToPrint1;
     this.DetailReport.Level = 0;
     this.DetailReport.Name = "DetailReport";
     //
     // Detail1
     //
     this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
     this.Detail1.HeightF = 20F;
     this.Detail1.Name = "Detail1";
     //
     // GroupHeader2
     //
     this.GroupHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1});
     this.GroupHeader2.HeightF = 25F;
     this.GroupHeader2.Name = "GroupHeader2";
     //
     // GroupFooter3
     //
     this.GroupFooter3.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable6,
         this.xrLabel17,
         this.xrLabel4,
         this.xrTable3,
         this.xrLabel20,
         this.xrLabel3,
         this.xrLabel5,
         this.xrPageBreak1,
         this.xrLabel1,
         this.xrLabel7,
         this.xrLabel8,
         this.xrLabel6,
         this.xrLabel9,
         this.xrLabel11});
     this.GroupFooter3.HeightF = 250F;
     this.GroupFooter3.Name = "GroupFooter3";
     //
     // xrTableCell17
     //
     this.xrTableCell17.Name = "xrTableCell17";
     this.xrTableCell17.Text = "CK(%)";
     this.xrTableCell17.Weight = 0.44682014695324773D;
     //
     // xrTableCell35
     //
     this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "InvoicesSelectByWhere.InvoicesSelectByWhere_ProductsInInvoicesSelectByWhere.Disco" +
                 "unt", "{0:n2}")});
     this.xrTableCell35.Name = "xrTableCell35";
     this.xrTableCell35.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 5, 0, 0, 100F);
     this.xrTableCell35.StylePriority.UsePadding = false;
     this.xrTableCell35.StylePriority.UseTextAlignment = false;
     this.xrTableCell35.Text = "xrTableCell35";
     this.xrTableCell35.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
     this.xrTableCell35.Weight = 0.4455766067495005D;
     //
     // invoicesSelectByWhereTableAdapter1
     //
     this.invoicesSelectByWhereTableAdapter1.ClearBeforeFill = true;
     //
     // productsInInvoicesSelectByWhereTableAdapter1
     //
     this.productsInInvoicesSelectByWhereTableAdapter1.ClearBeforeFill = true;
     //
     // rptMultiInvoicesToPrint
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.PageHeader,
         this.GroupFooter2,
         this.DetailReport});
     this.DataAdapter = this.productsInInvoicesSelectByWhereTableAdapter1;
     this.DataMember = "InvoicesSelectByWhere";
     this.DataSource = this.dsMultiInvoicesToPrint1;
     this.Margins = new System.Drawing.Printing.Margins(49, 50, 20, 0);
     this.Version = "11.1";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsMultiInvoicesToPrint1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery1  = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter1  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.CustomSqlQuery       customSqlQuery2  = new DevExpress.DataAccess.Sql.CustomSqlQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter2  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter3  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.StoredProcQuery      storedProcQuery1 = new DevExpress.DataAccess.Sql.StoredProcQuery();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter4  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter5  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter6  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter7  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter8  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter9  = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter10 = new DevExpress.DataAccess.Sql.QueryParameter();
     DevExpress.DataAccess.Sql.QueryParameter       queryParameter11 = new DevExpress.DataAccess.Sql.QueryParameter();
     System.ComponentModel.ComponentResourceManager resources        = new System.ComponentModel.ComponentResourceManager(typeof(Subsidiary_Ledgers));
     DevExpress.XtraReports.UI.XRSummary            xrSummary1       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary            xrSummary2       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.UI.XRSummary            xrSummary3       = new DevExpress.XtraReports.UI.XRSummary();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings1 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     DevExpress.XtraReports.Parameters.DynamicListLookUpSettings dynamicListLookUpSettings2 = new DevExpress.XtraReports.Parameters.DynamicListLookUpSettings();
     this.sqlDataSource2 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
     this.TopMargin      = new DevExpress.XtraReports.UI.TopMarginBand();
     this.xrLabel13      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel12      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel11      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel10      = new DevExpress.XtraReports.UI.XRLabel();
     this.xrTable1       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow1    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell1   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell2   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell3   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell4   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell5   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell6   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell7   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLabel6       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel5       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel4       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel3       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel2       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel1       = new DevExpress.XtraReports.UI.XRLabel();
     this.BottomMargin   = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.Detail         = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2       = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2    = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell9   = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell10  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell11  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell12  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell14  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell15  = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell16  = new DevExpress.XtraReports.UI.XRTableCell();
     this.GroupFooter1   = new DevExpress.XtraReports.UI.GroupFooterBand();
     this.xrLabel9       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel8       = new DevExpress.XtraReports.UI.XRLabel();
     this.xrLabel7       = new DevExpress.XtraReports.UI.XRLabel();
     this.NullParam      = new DevExpress.XtraReports.Parameters.Parameter();
     this.companyid      = new DevExpress.XtraReports.Parameters.Parameter();
     this.account        = new DevExpress.XtraReports.Parameters.Parameter();
     this.FromDate       = new DevExpress.XtraReports.Parameters.Parameter();
     this.ToDate         = new DevExpress.XtraReports.Parameters.Parameter();
     this.financialyear  = new DevExpress.XtraReports.Parameters.Parameter();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // sqlDataSource2
     //
     this.sqlDataSource2.ConnectionName = "ERPDB_Connection";
     this.sqlDataSource2.Name           = "sqlDataSource2";
     customSqlQuery1.Name  = "Query";
     queryParameter1.Name  = "companyid";
     queryParameter1.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter1.Value = new DevExpress.DataAccess.Expression("?companyid", typeof(long));
     customSqlQuery1.Parameters.Add(queryParameter1);
     customSqlQuery1.Sql   = "select * from Finance_Setup_FinancialYear where CompanyId = @companyid";
     customSqlQuery2.Name  = "Query_1";
     queryParameter2.Name  = "companyid";
     queryParameter2.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter2.Value = new DevExpress.DataAccess.Expression("?companyid", typeof(long));
     queryParameter3.Name  = "financialyearid";
     queryParameter3.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter3.Value = new DevExpress.DataAccess.Expression("?financialyear", typeof(long));
     customSqlQuery2.Parameters.Add(queryParameter2);
     customSqlQuery2.Parameters.Add(queryParameter3);
     customSqlQuery2.Sql = "Select * from Finance_Account where CompanyId = @companyid AND FinancialYearId = " +
                           "@financialyearid AND IsGeneralOrDetail = 0";
     storedProcQuery1.Name  = "Finance_SubsidiaryLedger";
     queryParameter4.Name   = "@account";
     queryParameter4.Type   = typeof(DevExpress.DataAccess.Expression);
     queryParameter4.Value  = new DevExpress.DataAccess.Expression("?account", typeof(long));
     queryParameter5.Name   = "@financialyear";
     queryParameter5.Type   = typeof(DevExpress.DataAccess.Expression);
     queryParameter5.Value  = new DevExpress.DataAccess.Expression("?financialyear", typeof(long));
     queryParameter6.Name   = "@fromdate";
     queryParameter6.Type   = typeof(DevExpress.DataAccess.Expression);
     queryParameter6.Value  = new DevExpress.DataAccess.Expression("?FromDate", typeof(string));
     queryParameter7.Name   = "@todate";
     queryParameter7.Type   = typeof(DevExpress.DataAccess.Expression);
     queryParameter7.Value  = new DevExpress.DataAccess.Expression("?ToDate", typeof(string));
     queryParameter8.Name   = "@companyid";
     queryParameter8.Type   = typeof(DevExpress.DataAccess.Expression);
     queryParameter8.Value  = new DevExpress.DataAccess.Expression("?companyid", typeof(long));
     queryParameter9.Name   = "@countryid";
     queryParameter9.Type   = typeof(DevExpress.DataAccess.Expression);
     queryParameter9.Value  = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     queryParameter10.Name  = "@cityid";
     queryParameter10.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter10.Value = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     queryParameter11.Name  = "@branchid";
     queryParameter11.Type  = typeof(DevExpress.DataAccess.Expression);
     queryParameter11.Value = new DevExpress.DataAccess.Expression("?NullParam", typeof(long));
     storedProcQuery1.Parameters.Add(queryParameter4);
     storedProcQuery1.Parameters.Add(queryParameter5);
     storedProcQuery1.Parameters.Add(queryParameter6);
     storedProcQuery1.Parameters.Add(queryParameter7);
     storedProcQuery1.Parameters.Add(queryParameter8);
     storedProcQuery1.Parameters.Add(queryParameter9);
     storedProcQuery1.Parameters.Add(queryParameter10);
     storedProcQuery1.Parameters.Add(queryParameter11);
     storedProcQuery1.StoredProcName = "Finance_SubsidiaryLedger";
     this.sqlDataSource2.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
         customSqlQuery1,
         customSqlQuery2,
         storedProcQuery1
     });
     this.sqlDataSource2.ResultSchemaSerializable = resources.GetString("sqlDataSource2.ResultSchemaSerializable");
     //
     // TopMargin
     //
     this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel13,
         this.xrLabel12,
         this.xrLabel11,
         this.xrLabel10,
         this.xrTable1,
         this.xrLabel6,
         this.xrLabel5,
         this.xrLabel4,
         this.xrLabel3,
         this.xrLabel2,
         this.xrLabel1
     });
     this.TopMargin.HeightF = 117.7083F;
     this.TopMargin.Name    = "TopMargin";
     //
     // xrLabel13
     //
     this.xrLabel13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query].[Name]")
     });
     this.xrLabel13.LocationFloat = new DevExpress.Utils.PointFloat(550F, 33.29166F);
     this.xrLabel13.Multiline     = true;
     this.xrLabel13.Name          = "xrLabel13";
     this.xrLabel13.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel13.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel13.Text          = "xrLabel13";
     //
     // xrLabel12
     //
     this.xrLabel12.LocationFloat = new DevExpress.Utils.PointFloat(450F, 33.29166F);
     this.xrLabel12.Multiline     = true;
     this.xrLabel12.Name          = "xrLabel12";
     this.xrLabel12.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel12.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel12.Text          = "Financial Year:";
     //
     // xrLabel11
     //
     this.xrLabel11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_1].[Description]")
     });
     this.xrLabel11.LocationFloat = new DevExpress.Utils.PointFloat(100F, 56.29166F);
     this.xrLabel11.Multiline     = true;
     this.xrLabel11.Name          = "xrLabel11";
     this.xrLabel11.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel11.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel11.Text          = "xrLabel11";
     //
     // xrLabel10
     //
     this.xrLabel10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Query_1].[AccountCode]")
     });
     this.xrLabel10.LocationFloat = new DevExpress.Utils.PointFloat(100F, 33.29166F);
     this.xrLabel10.Multiline     = true;
     this.xrLabel10.Name          = "xrLabel10";
     this.xrLabel10.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel10.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel10.Text          = "xrLabel10";
     //
     // xrTable1
     //
     this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 92.70834F);
     this.xrTable1.Name          = "xrTable1";
     this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1
     });
     this.xrTable1.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // xrTableRow1
     //
     this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell1,
         this.xrTableCell2,
         this.xrTableCell3,
         this.xrTableCell4,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell7,
         this.xrTableCell8
     });
     this.xrTableRow1.Name   = "xrTableRow1";
     this.xrTableRow1.Weight = 1D;
     //
     // xrTableCell1
     //
     this.xrTableCell1.Multiline = true;
     this.xrTableCell1.Name      = "xrTableCell1";
     this.xrTableCell1.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell1.Text      = "Date";
     this.xrTableCell1.Weight    = 1D;
     //
     // xrTableCell2
     //
     this.xrTableCell2.Multiline = true;
     this.xrTableCell2.Name      = "xrTableCell2";
     this.xrTableCell2.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell2.Text      = "Type";
     this.xrTableCell2.Weight    = 0.60256403996394248D;
     //
     // xrTableCell3
     //
     this.xrTableCell3.Multiline = true;
     this.xrTableCell3.Name      = "xrTableCell3";
     this.xrTableCell3.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell3.Text      = "Chq#";
     this.xrTableCell3.Weight    = 0.85897442157451931D;
     //
     // xrTableCell4
     //
     this.xrTableCell4.Multiline = true;
     this.xrTableCell4.Name      = "xrTableCell4";
     this.xrTableCell4.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell4.StylePriority.UsePadding = false;
     this.xrTableCell4.Text   = "Voucher";
     this.xrTableCell4.Weight = 0.93589731069711546D;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Multiline = true;
     this.xrTableCell5.Name      = "xrTableCell5";
     this.xrTableCell5.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell5.StylePriority.UsePadding = false;
     this.xrTableCell5.Text   = "Particulars";
     this.xrTableCell5.Weight = 1.602564227764423D;
     //
     // xrTableCell6
     //
     this.xrTableCell6.Multiline = true;
     this.xrTableCell6.Name      = "xrTableCell6";
     this.xrTableCell6.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell6.StylePriority.UsePadding = false;
     this.xrTableCell6.Text   = "Debit";
     this.xrTableCell6.Weight = 1D;
     //
     // xrTableCell7
     //
     this.xrTableCell7.Multiline = true;
     this.xrTableCell7.Name      = "xrTableCell7";
     this.xrTableCell7.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell7.StylePriority.UsePadding = false;
     this.xrTableCell7.Text   = "Credit";
     this.xrTableCell7.Weight = 1D;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Multiline = true;
     this.xrTableCell8.Name      = "xrTableCell8";
     this.xrTableCell8.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell8.StylePriority.UsePadding = false;
     this.xrTableCell8.Text   = "Balance";
     this.xrTableCell8.Weight = 1D;
     //
     // xrLabel6
     //
     this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "?ToDate")
     });
     this.xrLabel6.LocationFloat    = new DevExpress.Utils.PointFloat(550F, 10.00001F);
     this.xrLabel6.Multiline        = true;
     this.xrLabel6.Name             = "xrLabel6";
     this.xrLabel6.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel6.SizeF            = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel6.Text             = "xrLabel6";
     this.xrLabel6.TextFormatString = "{0:dd-MMM-yy}";
     //
     // xrLabel5
     //
     this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "?FromDate")
     });
     this.xrLabel5.LocationFloat    = new DevExpress.Utils.PointFloat(100F, 10.29166F);
     this.xrLabel5.Multiline        = true;
     this.xrLabel5.Name             = "xrLabel5";
     this.xrLabel5.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel5.SizeF            = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel5.Text             = "xrLabel5";
     this.xrLabel5.TextFormatString = "{0:dd-MMM-yy}";
     //
     // xrLabel4
     //
     this.xrLabel4.LocationFloat = new DevExpress.Utils.PointFloat(450F, 10.00001F);
     this.xrLabel4.Multiline     = true;
     this.xrLabel4.Name          = "xrLabel4";
     this.xrLabel4.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel4.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel4.Text          = "ToDate";
     //
     // xrLabel3
     //
     this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(1.041698F, 10.29166F);
     this.xrLabel3.Multiline     = true;
     this.xrLabel3.Name          = "xrLabel3";
     this.xrLabel3.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel3.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel3.Text          = "From Date:";
     //
     // xrLabel2
     //
     this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 56.29166F);
     this.xrLabel2.Multiline     = true;
     this.xrLabel2.Name          = "xrLabel2";
     this.xrLabel2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel2.Text          = "Account Name:";
     //
     // xrLabel1
     //
     this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 33.29166F);
     this.xrLabel1.Multiline     = true;
     this.xrLabel1.Name          = "xrLabel1";
     this.xrLabel1.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel1.SizeF         = new System.Drawing.SizeF(100F, 23F);
     this.xrLabel1.Text          = "Account Code:";
     //
     // BottomMargin
     //
     this.BottomMargin.Name = "BottomMargin";
     //
     // Detail
     //
     this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.Detail.HeightF = 25F;
     this.Detail.Name    = "Detail";
     //
     // xrTable2
     //
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(650F, 25F);
     //
     // xrTableRow2
     //
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell9,
         this.xrTableCell10,
         this.xrTableCell11,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell14,
         this.xrTableCell15,
         this.xrTableCell16
     });
     this.xrTableRow2.Name   = "xrTableRow2";
     this.xrTableRow2.Weight = 1D;
     //
     // xrTableCell9
     //
     this.xrTableCell9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Finance_SubsidiaryLedger].[Date]")
     });
     this.xrTableCell9.Multiline        = true;
     this.xrTableCell9.Name             = "xrTableCell9";
     this.xrTableCell9.Padding          = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell9.Text             = "xrTableCell1";
     this.xrTableCell9.TextFormatString = "{0:dd-MMM-yy}";
     this.xrTableCell9.Weight           = 1D;
     //
     // xrTableCell10
     //
     this.xrTableCell10.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Finance_SubsidiaryLedger].[Voucher Type]")
     });
     this.xrTableCell10.Multiline = true;
     this.xrTableCell10.Name      = "xrTableCell10";
     this.xrTableCell10.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell10.Text      = "xrTableCell2";
     this.xrTableCell10.Weight    = 0.60256403996394226D;
     //
     // xrTableCell11
     //
     this.xrTableCell11.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Finance_SubsidiaryLedger].[Cheque Number]")
     });
     this.xrTableCell11.Multiline = true;
     this.xrTableCell11.Name      = "xrTableCell11";
     this.xrTableCell11.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell11.Text      = "xrTableCell3";
     this.xrTableCell11.Weight    = 0.85897442157451931D;
     //
     // xrTableCell12
     //
     this.xrTableCell12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Finance_SubsidiaryLedger].[Voucher Code]")
     });
     this.xrTableCell12.Multiline = true;
     this.xrTableCell12.Name      = "xrTableCell12";
     this.xrTableCell12.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell12.StylePriority.UsePadding = false;
     this.xrTableCell12.Text   = "xrTableCell4";
     this.xrTableCell12.Weight = 0.93589731069711524D;
     //
     // xrTableCell13
     //
     this.xrTableCell13.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Finance_SubsidiaryLedger].[Particulars]")
     });
     this.xrTableCell13.Multiline = true;
     this.xrTableCell13.Name      = "xrTableCell13";
     this.xrTableCell13.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell13.StylePriority.UsePadding = false;
     this.xrTableCell13.Text   = "xrTableCell5";
     this.xrTableCell13.Weight = 1.602564227764423D;
     //
     // xrTableCell14
     //
     this.xrTableCell14.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Finance_SubsidiaryLedger].[Debit]")
     });
     this.xrTableCell14.Multiline = true;
     this.xrTableCell14.Name      = "xrTableCell14";
     this.xrTableCell14.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell14.StylePriority.UsePadding = false;
     this.xrTableCell14.Text   = "xrTableCell6";
     this.xrTableCell14.Weight = 1D;
     //
     // xrTableCell15
     //
     this.xrTableCell15.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Finance_SubsidiaryLedger].[Credit]")
     });
     this.xrTableCell15.Multiline = true;
     this.xrTableCell15.Name      = "xrTableCell15";
     this.xrTableCell15.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell15.StylePriority.UsePadding = false;
     this.xrTableCell15.Text   = "xrTableCell7";
     this.xrTableCell15.Weight = 1D;
     //
     // xrTableCell16
     //
     this.xrTableCell16.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Finance_SubsidiaryLedger].[Balance]")
     });
     this.xrTableCell16.Multiline = true;
     this.xrTableCell16.Name      = "xrTableCell16";
     this.xrTableCell16.Padding   = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrTableCell16.StylePriority.UsePadding = false;
     this.xrTableCell16.Text   = "xrTableCell8";
     this.xrTableCell16.Weight = 1D;
     //
     // GroupFooter1
     //
     this.GroupFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel9,
         this.xrLabel8,
         this.xrLabel7
     });
     this.GroupFooter1.HeightF = 23F;
     this.GroupFooter1.Name    = "GroupFooter1";
     //
     // xrLabel9
     //
     this.xrLabel9.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "sumSum([Finance_SubsidiaryLedger].[Balance])")
     });
     this.xrLabel9.LocationFloat = new DevExpress.Utils.PointFloat(568.75F, 0F);
     this.xrLabel9.Multiline     = true;
     this.xrLabel9.Name          = "xrLabel9";
     this.xrLabel9.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel9.SizeF         = new System.Drawing.SizeF(81.25F, 23F);
     xrSummary1.Running          = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel9.Summary       = xrSummary1;
     this.xrLabel9.Text          = "xrLabel8";
     //
     // xrLabel8
     //
     this.xrLabel8.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "sumSum([Finance_SubsidiaryLedger].[Credit])")
     });
     this.xrLabel8.LocationFloat = new DevExpress.Utils.PointFloat(487.5F, 0F);
     this.xrLabel8.Multiline     = true;
     this.xrLabel8.Name          = "xrLabel8";
     this.xrLabel8.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel8.SizeF         = new System.Drawing.SizeF(81.25F, 23F);
     xrSummary2.Running          = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel8.Summary       = xrSummary2;
     this.xrLabel8.Text          = "xrLabel8";
     //
     // xrLabel7
     //
     this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
         new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "sumSum([Finance_SubsidiaryLedger].[Debit])")
     });
     this.xrLabel7.LocationFloat = new DevExpress.Utils.PointFloat(406.25F, 0F);
     this.xrLabel7.Multiline     = true;
     this.xrLabel7.Name          = "xrLabel7";
     this.xrLabel7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel7.SizeF         = new System.Drawing.SizeF(81.25F, 23F);
     xrSummary3.Running          = DevExpress.XtraReports.UI.SummaryRunning.Group;
     this.xrLabel7.Summary       = xrSummary3;
     this.xrLabel7.Text          = "xrLabel7";
     //
     // NullParam
     //
     this.NullParam.AllowNull   = true;
     this.NullParam.Description = "NullParam";
     this.NullParam.Name        = "NullParam";
     this.NullParam.Type        = typeof(long);
     //
     // companyid
     //
     this.companyid.Description = "companyid";
     this.companyid.Name        = "companyid";
     this.companyid.Type        = typeof(long);
     this.companyid.ValueInfo   = "204";
     //
     // account
     //
     this.account.Description = "account";
     dynamicListLookUpSettings1.DataMember    = "Query";
     dynamicListLookUpSettings1.DataSource    = null;
     dynamicListLookUpSettings1.DisplayMember = "AccountCode";
     dynamicListLookUpSettings1.SortMember    = null;
     dynamicListLookUpSettings1.ValueMember   = "AccountId";
     this.account.LookUpSettings = dynamicListLookUpSettings1;
     this.account.Name           = "account";
     this.account.Type           = typeof(long);
     this.account.ValueInfo      = "186";
     //
     // FromDate
     //
     this.FromDate.Description = "FromDate";
     this.FromDate.Name        = "FromDate";
     this.FromDate.Type        = typeof(System.DateTime);
     this.FromDate.ValueInfo   = "2018-01-01";
     //
     // ToDate
     //
     this.ToDate.Description = "ToDate";
     this.ToDate.Name        = "ToDate";
     this.ToDate.Type        = typeof(System.DateTime);
     this.ToDate.ValueInfo   = "2021-01-01";
     //
     // financialyear
     //
     this.financialyear.Description           = "financialyear";
     dynamicListLookUpSettings2.DataMember    = "Query";
     dynamicListLookUpSettings2.DataSource    = this.sqlDataSource2;
     dynamicListLookUpSettings2.DisplayMember = "Name";
     dynamicListLookUpSettings2.SortMember    = null;
     dynamicListLookUpSettings2.ValueMember   = "FinancialYearId";
     this.financialyear.LookUpSettings        = dynamicListLookUpSettings2;
     this.financialyear.Name      = "financialyear";
     this.financialyear.Type      = typeof(long);
     this.financialyear.ValueInfo = "30";
     //
     // Subsidiary_Ledgers
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.TopMargin,
         this.BottomMargin,
         this.Detail,
         this.GroupFooter1
     });
     this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
         this.sqlDataSource2
     });
     this.DataMember = "Finance_SubsidiaryLedger";
     this.DataSource = this.sqlDataSource2;
     this.Font       = new System.Drawing.Font("Arial", 9.75F);
     this.Margins    = new System.Drawing.Printing.Margins(100, 100, 118, 100);
     this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
         this.NullParam,
         this.companyid,
         this.account,
         this.FromDate,
         this.ToDate,
         this.financialyear
     });
     this.Version = "18.2";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
        public void Should_fire_actions_against_item_in_subreport()
        {
            var report = new XtraReport();
            var detailBand = new DetailBand();
            report.Bands.Add(detailBand);


            var subreport = new XtraReport();
            var container = new XRSubreport {ReportSource = subreport, Name = "container"};
            detailBand.Controls.Add(container);
            

            var subReportBand = new DetailBand();
            subreport.Bands.Add(subReportBand);
            subReportBand.Controls.Add(new XRLine {Name = "line"});

            var facade =
                new ReportControlActionFacade(ReportControlAction<XRLine>.WithNoPredicate(l => l.ForeColor = Color.Blue));

            var report2 = new ReportController(new EventAggregator(), report, facade).Print(r => r.ExportToMemory());

            var newSubreport =
                ((XRSubreport) report2.Bands[0].Controls[0]).ReportSource;

            ((XRLine) newSubreport.Bands[0].Controls[0]).ForeColor.Should().Be(Color.Blue);

        }
        private void ClearSorting()
        {
            DetailBand dataBand = GetDataBand();

            dataBand.SortFields.Clear();
        }
        public void Should_convert_subreport_to_gc_xtra_report()
        {
            var report = new XtraReport();
            var detailBand = new DetailBand();
            var subReportContainer = new XRSubreport { ReportSource = new XtraReport() };
            report.Bands.Add(detailBand);
            detailBand.Controls.Add(subReportContainer);


            var controller = new ReportController(new EventAggregator(), report);
            var newReport = controller.Print(p => p.ExportToMemory());

            var newContainer = (XRSubreport)newReport.Bands[0].Controls[0];
            newContainer.ReportSource.GetType().Should().Be(typeof(gcXtraReport));
        }
Ejemplo n.º 53
0
        private void method_0()
        {
            ComponentResourceManager manager = new ComponentResourceManager(typeof(voucher_1));

            this.detailBand_0       = new DetailBand();
            this.xrtable_1          = new XRTable();
            this.xrtableRow_8       = new XRTableRow();
            this.xrtableCell_14     = new XRTableCell();
            this.xrtableCell_15     = new XRTableCell();
            this.xrtableCell_16     = new XRTableCell();
            this.xrtableRow_9       = new XRTableRow();
            this.xrtableCell_17     = new XRTableCell();
            this.xrtableCell_26     = new XRTableCell();
            this.xrtableCell_18     = new XRTableCell();
            this.xrtableCell_19     = new XRTableCell();
            this.reportHeaderBand_0 = new ReportHeaderBand();
            this.xrtable_0          = new XRTable();
            this.xrtableRow_0       = new XRTableRow();
            this.xrtableCell_0      = new XRTableCell();
            this.xrtableRow_14      = new XRTableRow();
            this.xrtableCell_32     = new XRTableCell();
            this.xrtableRow_1       = new XRTableRow();
            this.xrtableCell_1      = new XRTableCell();
            this.xrtableRow_2       = new XRTableRow();
            this.xrtableCell_2      = new XRTableCell();
            this.xrtableRow_3       = new XRTableRow();
            this.xrtableCell_3      = new XRTableCell();
            this.xrtableRow_4       = new XRTableRow();
            this.xrtableCell_4      = new XRTableCell();
            this.xrtableCell_5      = new XRTableCell();
            this.xrtableRow_5       = new XRTableRow();
            this.xrtableCell_6      = new XRTableCell();
            this.xrtableCell_7      = new XRTableCell();
            this.xrtableCell_8      = new XRTableCell();
            this.xrtableRow_6       = new XRTableRow();
            this.xrtableCell_9      = new XRTableCell();
            this.xrtableCell_10     = new XRTableCell();
            this.xrtableRow_7       = new XRTableRow();
            this.xrtableCell_11     = new XRTableCell();
            this.xrtableCell_12     = new XRTableCell();
            this.xrtableCell_13     = new XRTableCell();
            this.reportFooterBand_0 = new ReportFooterBand();
            this.xrrichText_0       = new XRRichText();
            this.xrtable_2          = new XRTable();
            this.xrtableRow_10      = new XRTableRow();
            this.xrtableCell_20     = new XRTableCell();
            this.xrtableCell_21     = new XRTableCell();
            this.xrtableCell_22     = new XRTableCell();
            this.xrtableRow_11      = new XRTableRow();
            this.xrtableCell_23     = new XRTableCell();
            this.xrtableCell_24     = new XRTableCell();
            this.xrtableCell_25     = new XRTableCell();
            this.xTveRubwQ          = new XRTableRow();
            this.xrtableCell_27     = new XRTableCell();
            this.xrtableCell_28     = new XRTableCell();
            this.xrtableCell_29     = new XRTableCell();
            this.xrtableRow_12      = new XRTableRow();
            this.xrtableCell_33     = new XRTableCell();
            this.xrtableCell_34     = new XRTableCell();
            this.xrtableCell_30     = new XRTableCell();
            this.xrtableRow_15      = new XRTableRow();
            this.xrtableCell_35     = new XRTableCell();
            this.xrtableCell_36     = new XRTableCell();
            this.xrtableCell_37     = new XRTableCell();
            this.xrtableRow_13      = new XRTableRow();
            this.xrtableCell_31     = new XRTableCell();
            this.topMarginBand_0    = new TopMarginBand();
            this.bottomMarginBand_0 = new BottomMarginBand();
            this.xrtable_1.BeginInit();
            this.xrtable_0.BeginInit();
            this.xrrichText_0.BeginInit();
            this.xrtable_2.BeginInit();
            this.BeginInit();
            this.detailBand_0.Controls.AddRange(new XRControl[] { this.xrtable_1 });
            this.detailBand_0.HeightF = 42f;
            this.detailBand_0.Name    = "Detail";
            this.detailBand_0.Padding = new PaddingInfo(0, 0, 0, 0, 100f);
            this.detailBand_0.StylePriority.UsePadding = false;
            this.detailBand_0.TextAlignment            = TextAlignment.TopLeft;
            this.detailBand_0.BeforePrint += new PrintEventHandler(this.detailBand_0_BeforePrint);
            this.xrtable_1.LocationFloat   = new PointFloat(0f, 0f);
            this.xrtable_1.Name            = "xrTable2";
            this.xrtable_1.Rows.AddRange(new XRTableRow[] { this.xrtableRow_8, this.xrtableRow_9 });
            this.xrtable_1.SizeF = new SizeF(267f, 42f);
            this.xrtableRow_8.Cells.AddRange(new XRTableCell[] { this.xrtableCell_14, this.xrtableCell_15, this.xrtableCell_16 });
            this.xrtableRow_8.Name          = "xrTableRow9";
            this.xrtableRow_8.Weight        = 1.0;
            this.xrtableCell_14.BorderColor = SystemColors.ControlDark;
            this.xrtableCell_14.Borders     = BorderSide.Top;
            this.xrtableCell_14.Font        = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_14.Name        = "Txt_idx";
            this.xrtableCell_14.Padding     = new PaddingInfo(3, 5, 0, 0, 100f);
            this.xrtableCell_14.StylePriority.UseBorderColor   = false;
            this.xrtableCell_14.StylePriority.UseBorders       = false;
            this.xrtableCell_14.StylePriority.UseFont          = false;
            this.xrtableCell_14.StylePriority.UsePadding       = false;
            this.xrtableCell_14.StylePriority.UseTextAlignment = false;
            this.xrtableCell_14.Text          = "Txt_idx";
            this.xrtableCell_14.TextAlignment = TextAlignment.MiddleLeft;
            this.xrtableCell_14.Weight        = 0.2921348314606742;
            this.xrtableCell_14.WordWrap      = false;
            this.xrtableCell_15.BorderColor   = SystemColors.ControlDark;
            this.xrtableCell_15.Borders       = BorderSide.Top;
            this.xrtableCell_15.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_15.Name          = "Txt_GoodsId";
            this.xrtableCell_15.StylePriority.UseBorderColor   = false;
            this.xrtableCell_15.StylePriority.UseBorders       = false;
            this.xrtableCell_15.StylePriority.UseFont          = false;
            this.xrtableCell_15.StylePriority.UseTextAlignment = false;
            this.xrtableCell_15.Text          = "Txt_GoodsId";
            this.xrtableCell_15.TextAlignment = TextAlignment.MiddleCenter;
            this.xrtableCell_15.Weight        = 0.651685393258427;
            this.xrtableCell_15.WordWrap      = false;
            this.xrtableCell_16.BorderColor   = SystemColors.ControlDark;
            this.xrtableCell_16.Borders       = BorderSide.Top;
            this.xrtableCell_16.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_16.Name          = "Txt_FullName";
            this.xrtableCell_16.Padding       = new PaddingInfo(5, 0, 0, 0, 100f);
            this.xrtableCell_16.StylePriority.UseBorderColor   = false;
            this.xrtableCell_16.StylePriority.UseBorders       = false;
            this.xrtableCell_16.StylePriority.UseFont          = false;
            this.xrtableCell_16.StylePriority.UsePadding       = false;
            this.xrtableCell_16.StylePriority.UseTextAlignment = false;
            this.xrtableCell_16.Text          = "Txt_FullName";
            this.xrtableCell_16.TextAlignment = TextAlignment.MiddleLeft;
            this.xrtableCell_16.Weight        = 2.0561797752808988;
            this.xrtableCell_16.WordWrap      = false;
            this.xrtableRow_9.Cells.AddRange(new XRTableCell[] { this.xrtableCell_17, this.xrtableCell_26, this.xrtableCell_18, this.xrtableCell_19 });
            this.xrtableRow_9.Name      = "xrTableRow10";
            this.xrtableRow_9.Weight    = 1.0;
            this.xrtableCell_17.Borders = BorderSide.None;
            this.xrtableCell_17.Font    = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_17.Name    = "xrTableCell6";
            this.xrtableCell_17.StylePriority.UseBorders       = false;
            this.xrtableCell_17.StylePriority.UseFont          = false;
            this.xrtableCell_17.StylePriority.UseTextAlignment = false;
            this.xrtableCell_17.Text                           = "SL :";
            this.xrtableCell_17.TextAlignment                  = TextAlignment.MiddleRight;
            this.xrtableCell_17.Weight                         = 0.4662921348314607;
            this.xrtableCell_26.Borders                        = BorderSide.None;
            this.xrtableCell_26.Name                           = "Txt_Qty";
            this.xrtableCell_26.StylePriority.UseBorders       = false;
            this.xrtableCell_26.StylePriority.UseTextAlignment = false;
            this.xrtableCell_26.Text                           = "Txt_Qty";
            this.xrtableCell_26.TextAlignment                  = TextAlignment.MiddleRight;
            this.xrtableCell_26.Weight                         = 0.5337078651685393;
            this.xrtableCell_18.Borders                        = BorderSide.None;
            this.xrtableCell_18.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_18.Name                           = "Txt_Price";
            this.xrtableCell_18.StylePriority.UseBorders       = false;
            this.xrtableCell_18.StylePriority.UseFont          = false;
            this.xrtableCell_18.StylePriority.UseTextAlignment = false;
            this.xrtableCell_18.Text                           = "Txt_Price";
            this.xrtableCell_18.TextAlignment                  = TextAlignment.MiddleRight;
            this.xrtableCell_18.Weight                         = 0.8651685393258427;
            this.xrtableCell_19.Borders                        = BorderSide.None;
            this.xrtableCell_19.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_19.Name                           = "Txt_Amount";
            this.xrtableCell_19.Padding                        = new PaddingInfo(0, 3, 0, 0, 100f);
            this.xrtableCell_19.StylePriority.UseBorders       = false;
            this.xrtableCell_19.StylePriority.UseFont          = false;
            this.xrtableCell_19.StylePriority.UsePadding       = false;
            this.xrtableCell_19.StylePriority.UseTextAlignment = false;
            this.xrtableCell_19.Text                           = "Txt_Amount";
            this.xrtableCell_19.TextAlignment                  = TextAlignment.MiddleRight;
            this.xrtableCell_19.Weight                         = 1.1348314606741572;
            this.reportHeaderBand_0.Controls.AddRange(new XRControl[] { this.xrtable_0 });
            this.reportHeaderBand_0.HeightF = 225f;
            this.reportHeaderBand_0.Name    = "ReportHeader";
            this.xrtable_0.LocationFloat    = new PointFloat(0f, 0f);
            this.xrtable_0.Name             = "xrTable1";
            this.xrtable_0.Rows.AddRange(new XRTableRow[] { this.xrtableRow_0, this.xrtableRow_14, this.xrtableRow_1, this.xrtableRow_2, this.xrtableRow_3, this.xrtableRow_4, this.xrtableRow_5, this.xrtableRow_6, this.xrtableRow_7 });
            this.xrtable_0.SizeF = new SizeF(267f, 225f);
            this.xrtableRow_0.Cells.AddRange(new XRTableCell[] { this.xrtableCell_0 });
            this.xrtableRow_0.Name   = "xrTableRow1";
            this.xrtableRow_0.Weight = 1.0;
            this.xrtableCell_0.Font  = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_0.Name  = "Txt_CompanyName";
            this.xrtableCell_0.StylePriority.UseFont          = false;
            this.xrtableCell_0.StylePriority.UseTextAlignment = false;
            this.xrtableCell_0.Text          = "Txt_CompanyName";
            this.xrtableCell_0.TextAlignment = TextAlignment.MiddleCenter;
            this.xrtableCell_0.Weight        = 3.0;
            this.xrtableRow_14.Cells.AddRange(new XRTableCell[] { this.xrtableCell_32 });
            this.xrtableRow_14.Name   = "xrTableRow16";
            this.xrtableRow_14.Weight = 1.0;
            this.xrtableCell_32.Font  = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_32.Name  = "xrTableCell4";
            this.xrtableCell_32.StylePriority.UseFont          = false;
            this.xrtableCell_32.StylePriority.UseTextAlignment = false;
            this.xrtableCell_32.Text          = "Cửa h\x00e0ng Ohayo Mart 649 Kim M\x00e3";
            this.xrtableCell_32.TextAlignment = TextAlignment.MiddleCenter;
            this.xrtableCell_32.Weight        = 3.0;
            this.xrtableRow_1.Cells.AddRange(new XRTableCell[] { this.xrtableCell_1 });
            this.xrtableRow_1.Name   = "xrTableRow2";
            this.xrtableRow_1.Weight = 1.0;
            this.xrtableCell_1.Font  = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_1.Name  = "Txt_Address";
            this.xrtableCell_1.StylePriority.UseFont          = false;
            this.xrtableCell_1.StylePriority.UseTextAlignment = false;
            this.xrtableCell_1.Text          = "Txt_Address";
            this.xrtableCell_1.TextAlignment = TextAlignment.MiddleCenter;
            this.xrtableCell_1.Weight        = 3.0;
            this.xrtableRow_2.Cells.AddRange(new XRTableCell[] { this.xrtableCell_2 });
            this.xrtableRow_2.Name   = "xrTableRow3";
            this.xrtableRow_2.Weight = 1.0;
            this.xrtableCell_2.Font  = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_2.Name  = "Txt_Phone";
            this.xrtableCell_2.StylePriority.UseFont          = false;
            this.xrtableCell_2.StylePriority.UseTextAlignment = false;
            this.xrtableCell_2.Text          = "Txt_Phone";
            this.xrtableCell_2.TextAlignment = TextAlignment.MiddleCenter;
            this.xrtableCell_2.Weight        = 3.0;
            this.xrtableRow_3.Cells.AddRange(new XRTableCell[] { this.xrtableCell_3 });
            this.xrtableRow_3.Name   = "xrTableRow4";
            this.xrtableRow_3.Weight = 1.0;
            this.xrtableCell_3.Font  = new Font("Tahoma", 12f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_3.Name  = "xrTableCell10";
            this.xrtableCell_3.StylePriority.UseFont          = false;
            this.xrtableCell_3.StylePriority.UseTextAlignment = false;
            this.xrtableCell_3.Text          = "H\x00d3A ĐƠN B\x00c1N LẺ";
            this.xrtableCell_3.TextAlignment = TextAlignment.MiddleCenter;
            this.xrtableCell_3.Weight        = 3.0;
            this.xrtableRow_4.Cells.AddRange(new XRTableCell[] { this.xrtableCell_4, this.xrtableCell_5 });
            this.xrtableRow_4.Name     = "xrTableRow5";
            this.xrtableRow_4.Weight   = 1.0;
            this.xrtableCell_4.Font    = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_4.Name    = "xrTableCell13";
            this.xrtableCell_4.Padding = new PaddingInfo(3, 0, 0, 0, 100f);
            this.xrtableCell_4.StylePriority.UseFont          = false;
            this.xrtableCell_4.StylePriority.UsePadding       = false;
            this.xrtableCell_4.StylePriority.UseTextAlignment = false;
            this.xrtableCell_4.Text                           = "Số h\x00f3a đơn :";
            this.xrtableCell_4.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrtableCell_4.Weight                         = 1.0;
            this.xrtableCell_5.Font                           = new Font("Tahoma", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.xrtableCell_5.Name                           = "Txt_TransNum";
            this.xrtableCell_5.Padding                        = new PaddingInfo(5, 0, 0, 0, 100f);
            this.xrtableCell_5.StylePriority.UseFont          = false;
            this.xrtableCell_5.StylePriority.UsePadding       = false;
            this.xrtableCell_5.StylePriority.UseTextAlignment = false;
            this.xrtableCell_5.Text                           = "Txt_TransNum";
            this.xrtableCell_5.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrtableCell_5.Weight                         = 2.0;
            this.xrtableRow_5.Cells.AddRange(new XRTableCell[] { this.xrtableCell_6, this.xrtableCell_7, this.xrtableCell_8 });
            this.xrtableRow_5.Name     = "xrTableRow6";
            this.xrtableRow_5.Weight   = 1.0;
            this.xrtableCell_6.Font    = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_6.Name    = "xrTableCell16";
            this.xrtableCell_6.Padding = new PaddingInfo(3, 0, 0, 0, 100f);
            this.xrtableCell_6.StylePriority.UseFont          = false;
            this.xrtableCell_6.StylePriority.UsePadding       = false;
            this.xrtableCell_6.StylePriority.UseTextAlignment = false;
            this.xrtableCell_6.Text                           = "Ng\x00e0y :";
            this.xrtableCell_6.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrtableCell_6.Weight                         = 1.0;
            this.xrtableCell_7.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_7.Name                           = "Txt_TranDate";
            this.xrtableCell_7.Padding                        = new PaddingInfo(5, 0, 0, 0, 100f);
            this.xrtableCell_7.StylePriority.UseFont          = false;
            this.xrtableCell_7.StylePriority.UsePadding       = false;
            this.xrtableCell_7.StylePriority.UseTextAlignment = false;
            this.xrtableCell_7.Text                           = "Txt_TranDate";
            this.xrtableCell_7.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrtableCell_7.Weight                         = 1.0;
            this.xrtableCell_8.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_8.Name                           = "Txt_TranTime";
            this.xrtableCell_8.StylePriority.UseFont          = false;
            this.xrtableCell_8.StylePriority.UseTextAlignment = false;
            this.xrtableCell_8.Text                           = "Txt_TranTime";
            this.xrtableCell_8.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrtableCell_8.Weight                         = 1.0;
            this.xrtableRow_6.Cells.AddRange(new XRTableCell[] { this.xrtableCell_9, this.xrtableCell_10 });
            this.xrtableRow_6.Name     = "xrTableRow7";
            this.xrtableRow_6.Weight   = 1.0;
            this.xrtableCell_9.Font    = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_9.Name    = "xrTableCell19";
            this.xrtableCell_9.Padding = new PaddingInfo(3, 0, 0, 0, 100f);
            this.xrtableCell_9.StylePriority.UseFont          = false;
            this.xrtableCell_9.StylePriority.UsePadding       = false;
            this.xrtableCell_9.StylePriority.UseTextAlignment = false;
            this.xrtableCell_9.Text                            = "Thu ng\x00e2n :";
            this.xrtableCell_9.TextAlignment                   = TextAlignment.MiddleLeft;
            this.xrtableCell_9.Weight                          = 1.0;
            this.xrtableCell_10.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_10.Name                           = "Txt_UserName";
            this.xrtableCell_10.Padding                        = new PaddingInfo(5, 0, 0, 0, 100f);
            this.xrtableCell_10.StylePriority.UseFont          = false;
            this.xrtableCell_10.StylePriority.UsePadding       = false;
            this.xrtableCell_10.StylePriority.UseTextAlignment = false;
            this.xrtableCell_10.Text                           = "Txt_UserName";
            this.xrtableCell_10.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrtableCell_10.Weight                         = 2.0;
            this.xrtableRow_7.Cells.AddRange(new XRTableCell[] { this.xrtableCell_11, this.xrtableCell_12, this.xrtableCell_13 });
            this.xrtableRow_7.Name          = "xrTableRow8";
            this.xrtableRow_7.Weight        = 1.0;
            this.xrtableCell_11.BorderColor = SystemColors.ControlDark;
            this.xrtableCell_11.Borders     = BorderSide.Bottom;
            this.xrtableCell_11.Font        = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_11.Name        = "xrTableCell22";
            this.xrtableCell_11.StylePriority.UseBorderColor   = false;
            this.xrtableCell_11.StylePriority.UseBorders       = false;
            this.xrtableCell_11.StylePriority.UseFont          = false;
            this.xrtableCell_11.StylePriority.UseTextAlignment = false;
            this.xrtableCell_11.TextAlignment = TextAlignment.MiddleLeft;
            this.xrtableCell_11.Weight        = 1.0;
            this.xrtableCell_12.BorderColor   = SystemColors.ControlDark;
            this.xrtableCell_12.Borders       = BorderSide.Bottom;
            this.xrtableCell_12.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_12.Name          = "xrTableCell23";
            this.xrtableCell_12.StylePriority.UseBorderColor   = false;
            this.xrtableCell_12.StylePriority.UseBorders       = false;
            this.xrtableCell_12.StylePriority.UseFont          = false;
            this.xrtableCell_12.StylePriority.UseTextAlignment = false;
            this.xrtableCell_12.TextAlignment = TextAlignment.MiddleLeft;
            this.xrtableCell_12.Weight        = 1.0;
            this.xrtableCell_13.BorderColor   = SystemColors.ControlDark;
            this.xrtableCell_13.Borders       = BorderSide.Bottom;
            this.xrtableCell_13.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_13.Name          = "xrTableCell24";
            this.xrtableCell_13.StylePriority.UseBorderColor   = false;
            this.xrtableCell_13.StylePriority.UseBorders       = false;
            this.xrtableCell_13.StylePriority.UseFont          = false;
            this.xrtableCell_13.StylePriority.UseTextAlignment = false;
            this.xrtableCell_13.TextAlignment = TextAlignment.MiddleLeft;
            this.xrtableCell_13.Weight        = 1.0;
            this.reportFooterBand_0.Controls.AddRange(new XRControl[] { this.xrrichText_0, this.xrtable_2 });
            this.reportFooterBand_0.HeightF         = 168f;
            this.reportFooterBand_0.Name            = "ReportFooter";
            this.xrrichText_0.Font                  = new Font("Tahoma", 6f, FontStyle.Italic, GraphicsUnit.Point, 0);
            this.xrrichText_0.LocationFloat         = new PointFloat(11f, 150f);
            this.xrrichText_0.Name                  = "Txt_Author";
            this.xrrichText_0.SerializableRtfString = manager.GetString("Txt_Author.SerializableRtfString");
            this.xrrichText_0.SizeF                 = new SizeF(246f, 12f);
            this.xrrichText_0.StylePriority.UseFont = false;
            this.xrtable_2.LocationFloat            = new PointFloat(0f, 0f);
            this.xrtable_2.Name = "xrTable3";
            this.xrtable_2.Rows.AddRange(new XRTableRow[] { this.xrtableRow_10, this.xrtableRow_11, this.xTveRubwQ, this.xrtableRow_12, this.xrtableRow_15, this.xrtableRow_13 });
            this.xrtable_2.SizeF = new SizeF(267f, 150f);
            this.xrtableRow_10.Cells.AddRange(new XRTableCell[] { this.xrtableCell_20, this.xrtableCell_21, this.xrtableCell_22 });
            this.xrtableRow_10.Name         = "xrTableRow11";
            this.xrtableRow_10.Weight       = 1.0;
            this.xrtableCell_20.BorderColor = SystemColors.ControlDark;
            this.xrtableCell_20.Borders     = BorderSide.Top;
            this.xrtableCell_20.Font        = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_20.Name        = "xrTableCell11";
            this.xrtableCell_20.StylePriority.UseBorderColor   = false;
            this.xrtableCell_20.StylePriority.UseBorders       = false;
            this.xrtableCell_20.StylePriority.UseFont          = false;
            this.xrtableCell_20.StylePriority.UseTextAlignment = false;
            this.xrtableCell_20.TextAlignment = TextAlignment.MiddleLeft;
            this.xrtableCell_20.Weight        = 0.651685393258427;
            this.xrtableCell_21.BorderColor   = SystemColors.ControlDark;
            this.xrtableCell_21.Borders       = BorderSide.Top;
            this.xrtableCell_21.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_21.Name          = "xrTableCell12";
            this.xrtableCell_21.Padding       = new PaddingInfo(3, 0, 0, 0, 100f);
            this.xrtableCell_21.StylePriority.UseBorderColor   = false;
            this.xrtableCell_21.StylePriority.UseBorders       = false;
            this.xrtableCell_21.StylePriority.UseFont          = false;
            this.xrtableCell_21.StylePriority.UsePadding       = false;
            this.xrtableCell_21.StylePriority.UseTextAlignment = false;
            this.xrtableCell_21.Text          = "Tổng tiền :";
            this.xrtableCell_21.TextAlignment = TextAlignment.MiddleLeft;
            this.xrtableCell_21.Weight        = 1.2247191011235954;
            this.xrtableCell_22.BorderColor   = SystemColors.ControlDark;
            this.xrtableCell_22.Borders       = BorderSide.Top;
            this.xrtableCell_22.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_22.Name          = "Txt_Totalamt";
            this.xrtableCell_22.Padding       = new PaddingInfo(0, 3, 0, 0, 100f);
            this.xrtableCell_22.StylePriority.UseBorderColor   = false;
            this.xrtableCell_22.StylePriority.UseBorders       = false;
            this.xrtableCell_22.StylePriority.UseFont          = false;
            this.xrtableCell_22.StylePriority.UsePadding       = false;
            this.xrtableCell_22.StylePriority.UseTextAlignment = false;
            this.xrtableCell_22.Text          = "Txt_Totalamt";
            this.xrtableCell_22.TextAlignment = TextAlignment.MiddleRight;
            this.xrtableCell_22.Weight        = 1.1235955056179776;
            this.xrtableRow_11.Cells.AddRange(new XRTableCell[] { this.xrtableCell_23, this.xrtableCell_24, this.xrtableCell_25 });
            this.xrtableRow_11.Name   = "xrTableRow12";
            this.xrtableRow_11.Weight = 1.0;
            this.xrtableCell_23.Font  = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_23.Name  = "xrTableCell25";
            this.xrtableCell_23.StylePriority.UseFont          = false;
            this.xrtableCell_23.StylePriority.UseTextAlignment = false;
            this.xrtableCell_23.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrtableCell_23.Weight                         = 0.651685393258427;
            this.xrtableCell_24.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_24.Name                           = "xrTableCell26";
            this.xrtableCell_24.Padding                        = new PaddingInfo(3, 0, 0, 0, 100f);
            this.xrtableCell_24.StylePriority.UseFont          = false;
            this.xrtableCell_24.StylePriority.UsePadding       = false;
            this.xrtableCell_24.StylePriority.UseTextAlignment = false;
            this.xrtableCell_24.Text                           = "Chiết khấu :";
            this.xrtableCell_24.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrtableCell_24.Weight                         = 1.2247191011235956;
            this.xrtableCell_25.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_25.Name                           = "Txt_Discount";
            this.xrtableCell_25.Padding                        = new PaddingInfo(0, 3, 0, 0, 100f);
            this.xrtableCell_25.StylePriority.UseFont          = false;
            this.xrtableCell_25.StylePriority.UsePadding       = false;
            this.xrtableCell_25.StylePriority.UseTextAlignment = false;
            this.xrtableCell_25.Text                           = "Txt_Discount";
            this.xrtableCell_25.TextAlignment                  = TextAlignment.MiddleRight;
            this.xrtableCell_25.Weight                         = 1.1235955056179776;
            this.xTveRubwQ.Cells.AddRange(new XRTableCell[] { this.xrtableCell_27, this.xrtableCell_28, this.xrtableCell_29 });
            this.xTveRubwQ.Name      = "xrTableRow13";
            this.xTveRubwQ.Weight    = 1.0;
            this.xrtableCell_27.Font = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_27.Name = "xrTableCell1";
            this.xrtableCell_27.StylePriority.UseFont          = false;
            this.xrtableCell_27.StylePriority.UseTextAlignment = false;
            this.xrtableCell_27.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrtableCell_27.Weight                         = 0.651685393258427;
            this.xrtableCell_28.Font                           = new Font("Tahoma", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.xrtableCell_28.Name                           = "xrTableCell2";
            this.xrtableCell_28.Padding                        = new PaddingInfo(3, 0, 0, 0, 100f);
            this.xrtableCell_28.StylePriority.UseFont          = false;
            this.xrtableCell_28.StylePriority.UsePadding       = false;
            this.xrtableCell_28.StylePriority.UseTextAlignment = false;
            this.xrtableCell_28.Text                           = "Tổng thanh to\x00e1n :";
            this.xrtableCell_28.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrtableCell_28.Weight                         = 1.2247191011235956;
            this.xrtableCell_29.Font                           = new Font("Tahoma", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.xrtableCell_29.Name                           = "Txt_PayAmt";
            this.xrtableCell_29.Padding                        = new PaddingInfo(0, 3, 0, 0, 100f);
            this.xrtableCell_29.StylePriority.UseFont          = false;
            this.xrtableCell_29.StylePriority.UsePadding       = false;
            this.xrtableCell_29.StylePriority.UseTextAlignment = false;
            this.xrtableCell_29.Text                           = "Txt_PayAmt";
            this.xrtableCell_29.TextAlignment                  = TextAlignment.MiddleRight;
            this.xrtableCell_29.Weight                         = 1.1235955056179776;
            this.xrtableRow_12.Cells.AddRange(new XRTableCell[] { this.xrtableCell_33, this.xrtableCell_34, this.xrtableCell_30 });
            this.xrtableRow_12.Name     = "xrTableRow14";
            this.xrtableRow_12.Weight   = 1.0;
            this.xrtableCell_33.Font    = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_33.Name    = "xrTableCell21";
            this.xrtableCell_33.Padding = new PaddingInfo(3, 3, 0, 0, 100f);
            this.xrtableCell_33.StylePriority.UseFont          = false;
            this.xrtableCell_33.StylePriority.UsePadding       = false;
            this.xrtableCell_33.StylePriority.UseTextAlignment = false;
            this.xrtableCell_33.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrtableCell_33.Weight                         = 0.64887640449438211;
            this.xrtableCell_34.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_34.Name                           = "xrTableCell14";
            this.xrtableCell_34.Padding                        = new PaddingInfo(3, 3, 0, 0, 100f);
            this.xrtableCell_34.StylePriority.UseFont          = false;
            this.xrtableCell_34.StylePriority.UsePadding       = false;
            this.xrtableCell_34.StylePriority.UseTextAlignment = false;
            this.xrtableCell_34.Text                           = "Tiền nhận :";
            this.xrtableCell_34.TextAlignment                  = TextAlignment.MiddleLeft;
            this.xrtableCell_34.Weight                         = 1.2219101123595508;
            this.xrtableCell_30.Borders                        = BorderSide.None;
            this.xrtableCell_30.Font                           = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_30.Name                           = "Txt_FrCustomer";
            this.xrtableCell_30.Padding                        = new PaddingInfo(3, 3, 0, 0, 100f);
            this.xrtableCell_30.StylePriority.UseBorders       = false;
            this.xrtableCell_30.StylePriority.UseFont          = false;
            this.xrtableCell_30.StylePriority.UsePadding       = false;
            this.xrtableCell_30.StylePriority.UseTextAlignment = false;
            this.xrtableCell_30.Text                           = "Txt_FrCustomer";
            this.xrtableCell_30.TextAlignment                  = TextAlignment.MiddleRight;
            this.xrtableCell_30.Weight                         = 1.1292134831460676;
            this.xrtableRow_15.Cells.AddRange(new XRTableCell[] { this.xrtableCell_35, this.xrtableCell_36, this.xrtableCell_37 });
            this.xrtableRow_15.Name         = "xrTableRow17";
            this.xrtableRow_15.Weight       = 1.0;
            this.xrtableCell_35.BorderColor = SystemColors.ControlDark;
            this.xrtableCell_35.Borders     = BorderSide.Bottom;
            this.xrtableCell_35.Font        = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_35.Name        = "xrTableCell5";
            this.xrtableCell_35.Padding     = new PaddingInfo(3, 3, 0, 0, 100f);
            this.xrtableCell_35.StylePriority.UseBorderColor   = false;
            this.xrtableCell_35.StylePriority.UseBorders       = false;
            this.xrtableCell_35.StylePriority.UseFont          = false;
            this.xrtableCell_35.StylePriority.UsePadding       = false;
            this.xrtableCell_35.StylePriority.UseTextAlignment = false;
            this.xrtableCell_35.TextAlignment = TextAlignment.MiddleLeft;
            this.xrtableCell_35.Weight        = 0.64887640449438211;
            this.xrtableCell_36.BorderColor   = SystemColors.ControlDark;
            this.xrtableCell_36.Borders       = BorderSide.Bottom;
            this.xrtableCell_36.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_36.Name          = "xrTableCell7";
            this.xrtableCell_36.Padding       = new PaddingInfo(3, 3, 0, 0, 100f);
            this.xrtableCell_36.StylePriority.UseBorderColor   = false;
            this.xrtableCell_36.StylePriority.UseBorders       = false;
            this.xrtableCell_36.StylePriority.UseFont          = false;
            this.xrtableCell_36.StylePriority.UsePadding       = false;
            this.xrtableCell_36.StylePriority.UseTextAlignment = false;
            this.xrtableCell_36.Text          = "Trả lại kh\x00e1ch :";
            this.xrtableCell_36.TextAlignment = TextAlignment.MiddleLeft;
            this.xrtableCell_36.Weight        = 1.2219101123595508;
            this.xrtableCell_37.BorderColor   = SystemColors.ControlDark;
            this.xrtableCell_37.Borders       = BorderSide.Bottom;
            this.xrtableCell_37.Font          = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_37.Name          = "Txt_PayBack";
            this.xrtableCell_37.Padding       = new PaddingInfo(3, 3, 0, 0, 100f);
            this.xrtableCell_37.StylePriority.UseBorderColor   = false;
            this.xrtableCell_37.StylePriority.UseBorders       = false;
            this.xrtableCell_37.StylePriority.UseFont          = false;
            this.xrtableCell_37.StylePriority.UsePadding       = false;
            this.xrtableCell_37.StylePriority.UseTextAlignment = false;
            this.xrtableCell_37.Text          = "Txt_PayBack";
            this.xrtableCell_37.TextAlignment = TextAlignment.MiddleRight;
            this.xrtableCell_37.Weight        = 1.1292134831460676;
            this.xrtableRow_13.Cells.AddRange(new XRTableCell[] { this.xrtableCell_31 });
            this.xrtableRow_13.Name         = "xrTableRow15";
            this.xrtableRow_13.Weight       = 1.0;
            this.xrtableCell_31.BorderColor = SystemColors.ControlDark;
            this.xrtableCell_31.Font        = new Font("Tahoma", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.xrtableCell_31.Name        = "xrTableCell9";
            this.xrtableCell_31.StylePriority.UseBorderColor   = false;
            this.xrtableCell_31.StylePriority.UseFont          = false;
            this.xrtableCell_31.StylePriority.UseTextAlignment = false;
            this.xrtableCell_31.Text          = "Xin c\x00e1m ơn Qu\x00fd kh\x00e1ch h\x00e0ng";
            this.xrtableCell_31.TextAlignment = TextAlignment.MiddleCenter;
            this.xrtableCell_31.Weight        = 3.0;
            this.topMarginBand_0.HeightF      = 30f;
            this.topMarginBand_0.Name         = "topMarginBand1";
            this.bottomMarginBand_0.HeightF   = 30f;
            this.bottomMarginBand_0.Name      = "bottomMarginBand1";
            base.Bands.AddRange(new Band[] { this.detailBand_0, this.reportHeaderBand_0, this.reportFooterBand_0, this.topMarginBand_0, this.bottomMarginBand_0 });
            base.Margins                 = new Margins(4, 4, 30, 30);
            base.PageHeight              = 0x491;
            base.PageWidth               = 0x115;
            base.PaperKind               = PaperKind.Custom;
            base.Version                 = "9.3";
            base.Watermark.Font          = new Font("Arial Black", 9.75f, FontStyle.Bold, GraphicsUnit.Point, 0);
            base.Watermark.ImageAlign    = ContentAlignment.TopCenter;
            base.Watermark.Text          = "doublicate";
            base.Watermark.TextDirection = DirectionMode.Horizontal;
            this.BeforePrint            += new PrintEventHandler(this.voucher_1_BeforePrint);
            this.xrtable_1.EndInit();
            this.xrtable_0.EndInit();
            this.xrrichText_0.EndInit();
            this.xrtable_2.EndInit();
            this.EndInit();
        }
Ejemplo n.º 54
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DEAAP04_01_03));
     this.topMarginBand1    = new DevExpress.XtraReports.UI.TopMarginBand();
     this.detailBand1       = new DevExpress.XtraReports.UI.DetailBand();
     this.xrTable2          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow2       = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell5      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell9      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell8      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell13     = new DevExpress.XtraReports.UI.XRTableCell();
     this.bottomMarginBand1 = new DevExpress.XtraReports.UI.BottomMarginBand();
     this.PageFooter        = new DevExpress.XtraReports.UI.PageFooterBand();
     this.xrLine2           = new DevExpress.XtraReports.UI.XRLine();
     this.PageHeader        = new DevExpress.XtraReports.UI.PageHeaderBand();
     this.xrLine1           = new DevExpress.XtraReports.UI.XRLine();
     this.xrTable7          = new DevExpress.XtraReports.UI.XRTable();
     this.xrTableRow10      = new DevExpress.XtraReports.UI.XRTableRow();
     this.xrTableCell46     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell1      = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell54     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrTableCell55     = new DevExpress.XtraReports.UI.XRTableCell();
     this.xrLine7           = new DevExpress.XtraReports.UI.XRLine();
     this.xrLabel2          = new DevExpress.XtraReports.UI.XRLabel();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     //
     // topMarginBand1
     //
     this.topMarginBand1.HeightF = 20F;
     this.topMarginBand1.Name    = "topMarginBand1";
     //
     // detailBand1
     //
     this.detailBand1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2
     });
     this.detailBand1.HeightF = 20F;
     this.detailBand1.Name    = "detailBand1";
     //
     // xrTable2
     //
     this.xrTable2.Borders       = DevExpress.XtraPrinting.BorderSide.Bottom;
     this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrTable2.Name          = "xrTable2";
     this.xrTable2.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
     this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow2
     });
     this.xrTable2.SizeF = new System.Drawing.SizeF(800F, 17.00001F);
     this.xrTable2.StylePriority.UseBorders = false;
     this.xrTable2.StylePriority.UsePadding = false;
     //
     // xrTableRow2
     //
     this.xrTableRow2.BackColor = System.Drawing.Color.White;
     this.xrTableRow2.Borders   = DevExpress.XtraPrinting.BorderSide.None;
     this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell5,
         this.xrTableCell9,
         this.xrTableCell8,
         this.xrTableCell13
     });
     this.xrTableRow2.Font    = new System.Drawing.Font("굴림체", 9F);
     this.xrTableRow2.Name    = "xrTableRow2";
     this.xrTableRow2.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 5, 0, 100F);
     this.xrTableRow2.StylePriority.UseBackColor     = false;
     this.xrTableRow2.StylePriority.UseBorders       = false;
     this.xrTableRow2.StylePriority.UseFont          = false;
     this.xrTableRow2.StylePriority.UsePadding       = false;
     this.xrTableRow2.StylePriority.UseTextAlignment = false;
     this.xrTableRow2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableRow2.Weight        = 0.85;
     //
     // xrTableCell5
     //
     this.xrTableCell5.Borders = ((DevExpress.XtraPrinting.BorderSide)(((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Right)
                                                                        | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell5.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtFunds.I_AMT", "{0:n0}")
     });
     this.xrTableCell5.Name = "xrTableCell5";
     this.xrTableCell5.StylePriority.UseBorders = false;
     this.xrTableCell5.Text   = "xrTableCell5";
     this.xrTableCell5.Weight = 0.39396596894003122;
     //
     // xrTableCell9
     //
     this.xrTableCell9.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtFunds.D_AMT", "{0:n0}")
     });
     this.xrTableCell9.Name = "xrTableCell9";
     this.xrTableCell9.StylePriority.UseBorders = false;
     this.xrTableCell9.Text   = "xrTableCell9";
     this.xrTableCell9.Weight = 0.39396596894003122;
     //
     // xrTableCell8
     //
     this.xrTableCell8.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell8.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtFunds.SUM_AMT", "{0:n0}")
     });
     this.xrTableCell8.Name = "xrTableCell8";
     this.xrTableCell8.StylePriority.UseBorders = false;
     this.xrTableCell8.Text   = "xrTableCell8";
     this.xrTableCell8.Weight = 0.39396596436674047;
     //
     // xrTableCell13
     //
     this.xrTableCell13.Borders = ((DevExpress.XtraPrinting.BorderSide)((DevExpress.XtraPrinting.BorderSide.Right | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell13.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "dtFunds.J_AMT", "{0:n0}")
     });
     this.xrTableCell13.Name = "xrTableCell13";
     this.xrTableCell13.StylePriority.UseBorders = false;
     this.xrTableCell13.Text   = "xrTableCell13";
     this.xrTableCell13.Weight = 0.39396599263443977;
     //
     // bottomMarginBand1
     //
     this.bottomMarginBand1.HeightF = 20F;
     this.bottomMarginBand1.Name    = "bottomMarginBand1";
     //
     // PageFooter
     //
     this.PageFooter.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine2
     });
     this.PageFooter.HeightF = 8F;
     this.PageFooter.Name    = "PageFooter";
     //
     // xrLine2
     //
     this.xrLine2.BorderWidth   = 1;
     this.xrLine2.LineWidth     = 2;
     this.xrLine2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
     this.xrLine2.Name          = "xrLine2";
     this.xrLine2.SizeF         = new System.Drawing.SizeF(800F, 8F);
     this.xrLine2.StylePriority.UseBorderWidth = false;
     //
     // PageHeader
     //
     this.PageHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLine1,
         this.xrTable7,
         this.xrLine7,
         this.xrLabel2
     });
     this.PageHeader.HeightF = 64.5F;
     this.PageHeader.Name    = "PageHeader";
     //
     // xrLine1
     //
     this.xrLine1.BorderWidth   = 1;
     this.xrLine1.LineWidth     = 2;
     this.xrLine1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 62.5F);
     this.xrLine1.Name          = "xrLine1";
     this.xrLine1.SizeF         = new System.Drawing.SizeF(800F, 2F);
     this.xrLine1.StylePriority.UseBorderWidth = false;
     //
     // xrTable7
     //
     this.xrTable7.BackColor = System.Drawing.Color.WhiteSmoke;
     this.xrTable7.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                       | DevExpress.XtraPrinting.BorderSide.Right)
                                                                      | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTable7.Font          = new System.Drawing.Font("굴림체", 8F);
     this.xrTable7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 37.5F);
     this.xrTable7.Name          = "xrTable7";
     this.xrTable7.Padding       = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 5, 0, 100F);
     this.xrTable7.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow10
     });
     this.xrTable7.SizeF = new System.Drawing.SizeF(800F, 25F);
     this.xrTable7.StylePriority.UseBackColor   = false;
     this.xrTable7.StylePriority.UseBorders     = false;
     this.xrTable7.StylePriority.UseBorderWidth = false;
     this.xrTable7.StylePriority.UseFont        = false;
     this.xrTable7.StylePriority.UsePadding     = false;
     //
     // xrTableRow10
     //
     this.xrTableRow10.BackColor = System.Drawing.Color.WhiteSmoke;
     this.xrTableRow10.Borders   = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                           | DevExpress.XtraPrinting.BorderSide.Right)
                                                                          | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableRow10.BorderWidth = 2;
     this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell46,
         this.xrTableCell1,
         this.xrTableCell54,
         this.xrTableCell55
     });
     this.xrTableRow10.Font    = new System.Drawing.Font("굴림체", 9F);
     this.xrTableRow10.Name    = "xrTableRow10";
     this.xrTableRow10.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 5, 0, 100F);
     this.xrTableRow10.StylePriority.UseBackColor     = false;
     this.xrTableRow10.StylePriority.UseBorders       = false;
     this.xrTableRow10.StylePriority.UseBorderWidth   = false;
     this.xrTableRow10.StylePriority.UseFont          = false;
     this.xrTableRow10.StylePriority.UsePadding       = false;
     this.xrTableRow10.StylePriority.UseTextAlignment = false;
     this.xrTableRow10.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableRow10.Weight        = 1;
     //
     // xrTableCell46
     //
     this.xrTableCell46.BorderWidth = 1;
     this.xrTableCell46.Name        = "xrTableCell46";
     this.xrTableCell46.StylePriority.UseBorderWidth = false;
     this.xrTableCell46.Text   = "이   월";
     this.xrTableCell46.Weight = 0.39670231451409665;
     //
     // xrTableCell1
     //
     this.xrTableCell1.BorderWidth = 1;
     this.xrTableCell1.Name        = "xrTableCell1";
     this.xrTableCell1.StylePriority.UseBorderWidth = false;
     this.xrTableCell1.Text   = "당일 발생";
     this.xrTableCell1.Weight = 0.39670231742365791;
     //
     // xrTableCell54
     //
     this.xrTableCell54.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell54.BorderWidth = 1;
     this.xrTableCell54.Font        = new System.Drawing.Font("굴림체", 8F);
     this.xrTableCell54.Name        = "xrTableCell54";
     this.xrTableCell54.StylePriority.UseBorders       = false;
     this.xrTableCell54.StylePriority.UseBorderWidth   = false;
     this.xrTableCell54.StylePriority.UseFont          = false;
     this.xrTableCell54.StylePriority.UseTextAlignment = false;
     this.xrTableCell54.Text   = "당일 정산";
     this.xrTableCell54.Weight = 0.39670229117683142;
     //
     // xrTableCell55
     //
     this.xrTableCell55.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
                                                                          | DevExpress.XtraPrinting.BorderSide.Right)
                                                                         | DevExpress.XtraPrinting.BorderSide.Bottom)));
     this.xrTableCell55.BorderWidth = 1;
     this.xrTableCell55.Font        = new System.Drawing.Font("굴림체", 8F);
     this.xrTableCell55.Name        = "xrTableCell55";
     this.xrTableCell55.StylePriority.UseBorders       = false;
     this.xrTableCell55.StylePriority.UseBorderWidth   = false;
     this.xrTableCell55.StylePriority.UseFont          = false;
     this.xrTableCell55.StylePriority.UseTextAlignment = false;
     this.xrTableCell55.Text          = "현   재";
     this.xrTableCell55.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopCenter;
     this.xrTableCell55.Weight        = 0.39670235719609559;
     //
     // xrLine7
     //
     this.xrLine7.BorderWidth   = 1;
     this.xrLine7.LineWidth     = 2;
     this.xrLine7.LocationFloat = new DevExpress.Utils.PointFloat(0F, 32.5F);
     this.xrLine7.Name          = "xrLine7";
     this.xrLine7.SizeF         = new System.Drawing.SizeF(800F, 8F);
     this.xrLine7.StylePriority.UseBorderWidth = false;
     //
     // xrLabel2
     //
     this.xrLabel2.Font                  = new System.Drawing.Font("굴림체", 9F, System.Drawing.FontStyle.Bold);
     this.xrLabel2.LocationFloat         = new DevExpress.Utils.PointFloat(12.5F, 12.5F);
     this.xrLabel2.Name                  = "xrLabel2";
     this.xrLabel2.Padding               = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
     this.xrLabel2.SizeF                 = new System.Drawing.SizeF(174.0417F, 19.08332F);
     this.xrLabel2.StylePriority.UseFont = false;
     this.xrLabel2.Text                  = "1 - 5. 외상매출(재실미수)";
     //
     // DEAAP04_01_03
     //
     this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.topMarginBand1,
         this.detailBand1,
         this.bottomMarginBand1,
         this.PageFooter,
         this.PageHeader
     });
     this.DataSourceSchema = resources.GetString("$this.DataSourceSchema");
     this.Landscape        = true;
     this.Margins          = new System.Drawing.Printing.Margins(20, 20, 20, 20);
     this.PageHeight       = 827;
     this.PageWidth        = 1169;
     this.PaperKind        = System.Drawing.Printing.PaperKind.A4;
     this.Version          = "9.3";
     ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xrTable7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }
Ejemplo n.º 55
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     string resourceFileName = "XtraReport07.resx";
         DevExpress.XtraReports.UI.XRSummary xrSummary1 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary2 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary3 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary4 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary5 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary6 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary7 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary8 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary9 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary10 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary11 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary12 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary13 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary14 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary15 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary16 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary17 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary18 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary19 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary20 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary21 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary22 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary23 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary24 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary25 = new DevExpress.XtraReports.UI.XRSummary();
         DevExpress.XtraReports.UI.XRSummary xrSummary26 = new DevExpress.XtraReports.UI.XRSummary();
         this.dsTEFollowUp1 = new dsTEFollowUp();
         this.Detail = new DevExpress.XtraReports.UI.DetailBand();
         this.xrTable2 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow4 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell10 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell22 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell20 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell16 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell11 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTable6 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow13 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell39 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell14 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell12 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell13 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell31 = new DevExpress.XtraReports.UI.XRTableCell();
         this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
         this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
         this.ReportHeader = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.xrTable1 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow1 = new DevExpress.XtraReports.UI.XRTableRow();
         this.lblSchool = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell2 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell3 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow3 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell7 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell9 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow5 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell23 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell24 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell26 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow2 = new DevExpress.XtraReports.UI.XRTableRow();
         this.lblDateTitle = new DevExpress.XtraReports.UI.XRTableCell();
         this.lblTitle = new DevExpress.XtraReports.UI.XRTableCell();
         this.ReportFooter = new DevExpress.XtraReports.UI.ReportFooterBand();
         this.cdtblhedeTableAdapter1 = new dsTEFollowUpTableAdapters.cdtblhedeTableAdapter();
         this.xRep05TableAdapter1 = new dsTEFollowUpTableAdapters.XRep05TableAdapter();
         this.DetailReport = new DevExpress.XtraReports.UI.DetailReportBand();
         this.Detail1 = new DevExpress.XtraReports.UI.DetailBand();
         this.xrTable4 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow7 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell55 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell53 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell54 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell32 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell56 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell33 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell57 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell34 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell58 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell35 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell59 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell36 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell60 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell37 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell63 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell64 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell38 = new DevExpress.XtraReports.UI.XRTableCell();
         this.ReportHeader1 = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.xrTable3 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow9 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell49 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell50 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell51 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow8 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell48 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell61 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell62 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow6 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell47 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell5 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell6 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell15 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell8 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell17 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell19 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell41 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell27 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell42 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell28 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell43 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell29 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell44 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell30 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell45 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell46 = new DevExpress.XtraReports.UI.XRTableCell();
         this.ReportFooter2 = new DevExpress.XtraReports.UI.ReportFooterBand();
         this.xrTable5 = new DevExpress.XtraReports.UI.XRTable();
         this.xrTableRow10 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell21 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell25 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell40 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell66 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell67 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell68 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell69 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell70 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell71 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell72 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell73 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell74 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell75 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell76 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell78 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableRow11 = new DevExpress.XtraReports.UI.XRTableRow();
         this.xrTableCell18 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell77 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell79 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell80 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell81 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell82 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell83 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell84 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell85 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell86 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell87 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell88 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell89 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell90 = new DevExpress.XtraReports.UI.XRTableCell();
         this.xrTableCell91 = new DevExpress.XtraReports.UI.XRTableCell();
         this.DetailReport1 = new DevExpress.XtraReports.UI.DetailReportBand();
         this.Detail2 = new DevExpress.XtraReports.UI.DetailBand();
         this.ReportHeader2 = new DevExpress.XtraReports.UI.ReportHeaderBand();
         this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
         this.ReportFooter1 = new DevExpress.XtraReports.UI.ReportFooterBand();
         this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
         this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
         this.xRep07Sub1TableAdapter1 = new dsTEFollowUpTableAdapters.XRep07Sub1TableAdapter();
         this.xRep07Sub2TableAdapter1 = new dsTEFollowUpTableAdapters.XRep07Sub2TableAdapter();
         ((System.ComponentModel.ISupportInitialize)(this.dsTEFollowUp1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
         //
         // dsTEFollowUp1
         //
         this.dsTEFollowUp1.DataSetName = "dsTEFollowUp";
         this.dsTEFollowUp1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
         //
         // Detail
         //
         this.Detail.HeightF = 14.58333F;
         this.Detail.Name = "Detail";
         this.Detail.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.Detail.StylePriority.UseTextAlignment = false;
         this.Detail.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         //
         // xrTable2
         //
         this.xrTable2.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Bold);
         this.xrTable2.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable2.Name = "xrTable2";
         this.xrTable2.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow4});
         this.xrTable2.SizeF = new System.Drawing.SizeF(1001F, 25F);
         this.xrTable2.StylePriority.UseBorders = false;
         this.xrTable2.StylePriority.UseFont = false;
         this.xrTable2.StylePriority.UseTextAlignment = false;
         this.xrTable2.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow4
         //
         this.xrTableRow4.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell10,
         this.xrTableCell22,
         this.xrTableCell20,
         this.xrTableCell16,
         this.xrTableCell11});
         this.xrTableRow4.Name = "xrTableRow4";
         this.xrTableRow4.Weight = 1D;
         //
         // xrTableCell10
         //
         this.xrTableCell10.CanGrow = false;
         this.xrTableCell10.CanShrink = true;
         this.xrTableCell10.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.taskgeha")});
         this.xrTableCell10.Multiline = true;
         this.xrTableCell10.Name = "xrTableCell10";
         this.xrTableCell10.StylePriority.UseTextAlignment = false;
         this.xrTableCell10.Text = "xrTableCell10";
         this.xrTableCell10.Weight = 0.59940071552024365D;
         //
         // xrTableCell22
         //
         this.xrTableCell22.CanGrow = false;
         this.xrTableCell22.CanShrink = true;
         this.xrTableCell22.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.taskplace")});
         this.xrTableCell22.Multiline = true;
         this.xrTableCell22.Name = "xrTableCell22";
         this.xrTableCell22.StylePriority.UseTextAlignment = false;
         this.xrTableCell22.Text = "xrTableCell22";
         this.xrTableCell22.Weight = 0.73393289755755586D;
         //
         // xrTableCell20
         //
         this.xrTableCell20.CanGrow = false;
         this.xrTableCell20.CanShrink = true;
         this.xrTableCell20.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.taskfatra")});
         this.xrTableCell20.Multiline = true;
         this.xrTableCell20.Name = "xrTableCell20";
         this.xrTableCell20.StylePriority.UseTextAlignment = false;
         this.xrTableCell20.Text = "xrTableCell20";
         this.xrTableCell20.Weight = 0.59940064932939852D;
         //
         // xrTableCell16
         //
         this.xrTableCell16.CanGrow = false;
         this.xrTableCell16.CanShrink = true;
         this.xrTableCell16.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.datetask", "{0:d/M/yyyy}")});
         this.xrTableCell16.Multiline = true;
         this.xrTableCell16.Name = "xrTableCell16";
         this.xrTableCell16.StylePriority.UseTextAlignment = false;
         this.xrTableCell16.Text = "xrTableCell16";
         this.xrTableCell16.Weight = 0.59940110127529556D;
         //
         // xrTableCell11
         //
         this.xrTableCell11.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub2.task")});
         this.xrTableCell11.Name = "xrTableCell11";
         this.xrTableCell11.StylePriority.UseTextAlignment = false;
         this.xrTableCell11.Text = "xrTableCell11";
         this.xrTableCell11.Weight = 0.4678646363175063D;
         //
         // xrTable6
         //
         this.xrTable6.BackColor = System.Drawing.Color.Gray;
         this.xrTable6.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable6.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
         this.xrTable6.ForeColor = System.Drawing.Color.White;
         this.xrTable6.LocationFloat = new DevExpress.Utils.PointFloat(0F, 28.12501F);
         this.xrTable6.Name = "xrTable6";
         this.xrTable6.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow13});
         this.xrTable6.SizeF = new System.Drawing.SizeF(1001F, 24.99999F);
         this.xrTable6.StylePriority.UseBackColor = false;
         this.xrTable6.StylePriority.UseBorders = false;
         this.xrTable6.StylePriority.UseFont = false;
         this.xrTable6.StylePriority.UseForeColor = false;
         this.xrTable6.StylePriority.UseTextAlignment = false;
         this.xrTable6.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow13
         //
         this.xrTableRow13.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell39,
         this.xrTableCell14,
         this.xrTableCell12,
         this.xrTableCell13,
         this.xrTableCell31});
         this.xrTableRow13.Name = "xrTableRow13";
         this.xrTableRow13.Weight = 1D;
         //
         // xrTableCell39
         //
         this.xrTableCell39.Name = "xrTableCell39";
         this.xrTableCell39.Text = "جهة التكليف ";
         this.xrTableCell39.Weight = 0.59940068080473652D;
         //
         // xrTableCell14
         //
         this.xrTableCell14.Name = "xrTableCell14";
         this.xrTableCell14.Text = "مــكــانــه";
         this.xrTableCell14.Weight = 0.73393283369957119D;
         //
         // xrTableCell12
         //
         this.xrTableCell12.Name = "xrTableCell12";
         this.xrTableCell12.Text = "مــدتــه";
         this.xrTableCell12.Weight = 0.59940068090306564D;
         //
         // xrTableCell13
         //
         this.xrTableCell13.Name = "xrTableCell13";
         this.xrTableCell13.StylePriority.UseTextAlignment = false;
         this.xrTableCell13.Text = "تـاريــخـــه";
         this.xrTableCell13.Weight = 0.59940068090306575D;
         //
         // xrTableCell31
         //
         this.xrTableCell31.Name = "xrTableCell31";
         this.xrTableCell31.Text = "التكليف";
         this.xrTableCell31.Weight = 0.467865123689561D;
         //
         // TopMargin
         //
         this.TopMargin.HeightF = 19F;
         this.TopMargin.Name = "TopMargin";
         this.TopMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.TopMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
         //
         // BottomMargin
         //
         this.BottomMargin.HeightF = 62F;
         this.BottomMargin.Name = "BottomMargin";
         this.BottomMargin.Padding = new DevExpress.XtraPrinting.PaddingInfo(0, 0, 0, 0, 100F);
         this.BottomMargin.StylePriority.UseTextAlignment = false;
         this.BottomMargin.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         //
         // ReportHeader
         //
         this.ReportHeader.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable1});
         this.ReportHeader.HeightF = 133.3333F;
         this.ReportHeader.Name = "ReportHeader";
         //
         // xrTable1
         //
         this.xrTable1.Font = new System.Drawing.Font("Times New Roman", 12F);
         this.xrTable1.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable1.Name = "xrTable1";
         this.xrTable1.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow1,
         this.xrTableRow3,
         this.xrTableRow5,
         this.xrTableRow2});
         this.xrTable1.SizeF = new System.Drawing.SizeF(1001F, 133.3333F);
         this.xrTable1.StylePriority.UseFont = false;
         //
         // xrTableRow1
         //
         this.xrTableRow1.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.lblSchool,
         this.xrTableCell2,
         this.xrTableCell3});
         this.xrTableRow1.Name = "xrTableRow1";
         this.xrTableRow1.Weight = 1D;
         //
         // lblSchool
         //
         this.lblSchool.Name = "lblSchool";
         this.lblSchool.StylePriority.UseTextAlignment = false;
         this.lblSchool.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.lblSchool.Weight = 1D;
         //
         // xrTableCell2
         //
         this.xrTableCell2.Name = "xrTableCell2";
         this.xrTableCell2.Weight = 1D;
         //
         // xrTableCell3
         //
         this.xrTableCell3.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.dawla")});
         this.xrTableCell3.Name = "xrTableCell3";
         this.xrTableCell3.StylePriority.UseTextAlignment = false;
         this.xrTableCell3.Text = "xrTableCell3";
         this.xrTableCell3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell3.Weight = 1D;
         //
         // xrTableRow3
         //
         this.xrTableRow3.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell7,
         this.xrTableCell9});
         this.xrTableRow3.Name = "xrTableRow3";
         this.xrTableRow3.Weight = 1D;
         //
         // xrTableCell7
         //
         this.xrTableCell7.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.dept")});
         this.xrTableCell7.Name = "xrTableCell7";
         this.xrTableCell7.StylePriority.UseTextAlignment = false;
         this.xrTableCell7.Text = "xrTableCell7";
         this.xrTableCell7.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.xrTableCell7.Weight = 1D;
         //
         // xrTableCell9
         //
         this.xrTableCell9.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.wezara")});
         this.xrTableCell9.Name = "xrTableCell9";
         this.xrTableCell9.StylePriority.UseTextAlignment = false;
         this.xrTableCell9.Text = "xrTableCell9";
         this.xrTableCell9.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.xrTableCell9.Weight = 2D;
         //
         // xrTableRow5
         //
         this.xrTableRow5.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell23,
         this.xrTableCell24,
         this.xrTableCell26});
         this.xrTableRow5.Name = "xrTableRow5";
         this.xrTableRow5.Weight = 1D;
         //
         // xrTableCell23
         //
         this.xrTableCell23.Name = "xrTableCell23";
         this.xrTableCell23.Weight = 1D;
         //
         // xrTableCell24
         //
         this.xrTableCell24.Name = "xrTableCell24";
         this.xrTableCell24.Weight = 1D;
         //
         // xrTableCell26
         //
         this.xrTableCell26.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "cdtblhede.edara")});
         this.xrTableCell26.Name = "xrTableCell26";
         this.xrTableCell26.Text = "xrTableCell26";
         this.xrTableCell26.Weight = 1D;
         //
         // xrTableRow2
         //
         this.xrTableRow2.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.lblDateTitle,
         this.lblTitle});
         this.xrTableRow2.Name = "xrTableRow2";
         this.xrTableRow2.Weight = 1D;
         //
         // lblDateTitle
         //
         this.lblDateTitle.Name = "lblDateTitle";
         this.lblDateTitle.StylePriority.UseTextAlignment = false;
         this.lblDateTitle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleLeft;
         this.lblDateTitle.Weight = 1.5104166666666665D;
         //
         // lblTitle
         //
         this.lblTitle.Name = "lblTitle";
         this.lblTitle.StylePriority.UseTextAlignment = false;
         this.lblTitle.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.lblTitle.Weight = 1.4895833333333335D;
         //
         // ReportFooter
         //
         this.ReportFooter.HeightF = 32.29167F;
         this.ReportFooter.Name = "ReportFooter";
         //
         // cdtblhedeTableAdapter1
         //
         this.cdtblhedeTableAdapter1.ClearBeforeFill = true;
         //
         // xRep05TableAdapter1
         //
         this.xRep05TableAdapter1.ClearBeforeFill = true;
         //
         // DetailReport
         //
         this.DetailReport.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail1,
         this.ReportHeader1,
         this.ReportFooter2});
         this.DetailReport.DataMember = "XRep07Sub1";
         this.DetailReport.DataSource = this.dsTEFollowUp1;
         this.DetailReport.Level = 0;
         this.DetailReport.Name = "DetailReport";
         //
         // Detail1
         //
         this.Detail1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable4});
         this.Detail1.HeightF = 26F;
         this.Detail1.Name = "Detail1";
         //
         // xrTable4
         //
         this.xrTable4.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable4.Font = new System.Drawing.Font("Times New Roman", 9.75F);
         this.xrTable4.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable4.Name = "xrTable4";
         this.xrTable4.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow7});
         this.xrTable4.SizeF = new System.Drawing.SizeF(1001F, 26F);
         this.xrTable4.StylePriority.UseBorders = false;
         this.xrTable4.StylePriority.UseFont = false;
         this.xrTable4.StylePriority.UseTextAlignment = false;
         this.xrTable4.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow7
         //
         this.xrTableRow7.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell55,
         this.xrTableCell53,
         this.xrTableCell54,
         this.xrTableCell32,
         this.xrTableCell56,
         this.xrTableCell33,
         this.xrTableCell57,
         this.xrTableCell34,
         this.xrTableCell58,
         this.xrTableCell35,
         this.xrTableCell59,
         this.xrTableCell36,
         this.xrTableCell60,
         this.xrTableCell37,
         this.xrTableCell63,
         this.xrTableCell64,
         this.xrTableCell38});
         this.xrTableRow7.Name = "xrTableRow7";
         this.xrTableRow7.Weight = 1D;
         //
         // xrTableCell55
         //
         this.xrTableCell55.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.remarks")});
         this.xrTableCell55.Name = "xrTableCell55";
         this.xrTableCell55.Text = "xrTableCell55";
         this.xrTableCell55.Weight = 0.63737150838966661D;
         //
         // xrTableCell53
         //
         this.xrTableCell53.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.wasaeel")});
         this.xrTableCell53.Name = "xrTableCell53";
         this.xrTableCell53.Text = "xrTableCell53";
         this.xrTableCell53.Weight = 0.11988022373544331D;
         //
         // xrTableCell54
         //
         this.xrTableCell54.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.tagareb")});
         this.xrTableCell54.Name = "xrTableCell54";
         this.xrTableCell54.Text = "xrTableCell54";
         this.xrTableCell54.Weight = 0.1198802237354433D;
         //
         // xrTableCell32
         //
         this.xrTableCell32.CanGrow = false;
         this.xrTableCell32.CanShrink = true;
         this.xrTableCell32.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.drasat")});
         this.xrTableCell32.Multiline = true;
         this.xrTableCell32.Name = "xrTableCell32";
         this.xrTableCell32.StylePriority.UseTextAlignment = false;
         this.xrTableCell32.Text = "xrTableCell32";
         this.xrTableCell32.Weight = 0.11988001794755371D;
         //
         // xrTableCell56
         //
         this.xrTableCell56.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.mashael")});
         this.xrTableCell56.Name = "xrTableCell56";
         this.xrTableCell56.Text = "xrTableCell56";
         this.xrTableCell56.Weight = 0.11988022546941772D;
         //
         // xrTableCell33
         //
         this.xrTableCell33.CanGrow = false;
         this.xrTableCell33.CanShrink = true;
         this.xrTableCell33.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.reads")});
         this.xrTableCell33.Multiline = true;
         this.xrTableCell33.Name = "xrTableCell33";
         this.xrTableCell33.StylePriority.UseTextAlignment = false;
         this.xrTableCell33.Text = "xrTableCell33";
         this.xrTableCell33.Weight = 0.11987995108556496D;
         //
         // xrTableCell57
         //
         this.xrTableCell57.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.nashraat")});
         this.xrTableCell57.Name = "xrTableCell57";
         this.xrTableCell57.Text = "xrTableCell57";
         this.xrTableCell57.Weight = 0.11988022101912341D;
         //
         // xrTableCell34
         //
         this.xrTableCell34.CanGrow = false;
         this.xrTableCell34.CanShrink = true;
         this.xrTableCell34.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trainteacher")});
         this.xrTableCell34.Multiline = true;
         this.xrTableCell34.Name = "xrTableCell34";
         this.xrTableCell34.StylePriority.UseTextAlignment = false;
         this.xrTableCell34.Text = "xrTableCell34";
         this.xrTableCell34.Weight = 0.11988022101912341D;
         //
         // xrTableCell58
         //
         this.xrTableCell58.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trainperson")});
         this.xrTableCell58.Name = "xrTableCell58";
         this.xrTableCell58.Text = "xrTableCell58";
         this.xrTableCell58.Weight = 0.11988012687753238D;
         //
         // xrTableCell35
         //
         this.xrTableCell35.CanGrow = false;
         this.xrTableCell35.CanShrink = true;
         this.xrTableCell35.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trbowy")});
         this.xrTableCell35.Multiline = true;
         this.xrTableCell35.Name = "xrTableCell35";
         this.xrTableCell35.StylePriority.UseTextAlignment = false;
         this.xrTableCell35.Text = "xrTableCell35";
         this.xrTableCell35.Weight = 0.11988010401221144D;
         //
         // xrTableCell59
         //
         this.xrTableCell59.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.droos")});
         this.xrTableCell59.Name = "xrTableCell59";
         this.xrTableCell59.Text = "xrTableCell59";
         this.xrTableCell59.Weight = 0.11988014046122275D;
         //
         // xrTableCell36
         //
         this.xrTableCell36.CanGrow = false;
         this.xrTableCell36.CanShrink = true;
         this.xrTableCell36.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.motabadla")});
         this.xrTableCell36.Multiline = true;
         this.xrTableCell36.Name = "xrTableCell36";
         this.xrTableCell36.StylePriority.UseTextAlignment = false;
         this.xrTableCell36.Text = "xrTableCell36";
         this.xrTableCell36.Weight = 0.11988014046122286D;
         //
         // xrTableCell60
         //
         this.xrTableCell60.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.takweem")});
         this.xrTableCell60.Name = "xrTableCell60";
         this.xrTableCell60.Text = "xrTableCell60";
         this.xrTableCell60.Weight = 0.11988015158904958D;
         //
         // xrTableCell37
         //
         this.xrTableCell37.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.zearat")});
         this.xrTableCell37.Name = "xrTableCell37";
         this.xrTableCell37.StylePriority.UseTextAlignment = false;
         this.xrTableCell37.Text = "xrTableCell37";
         this.xrTableCell37.Weight = 0.11987999153180218D;
         //
         // xrTableCell63
         //
         this.xrTableCell63.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.numberteacher")});
         this.xrTableCell63.Name = "xrTableCell63";
         this.xrTableCell63.Text = "xrTableCell63";
         this.xrTableCell63.Weight = 0.11988012895235384D;
         //
         // xrTableCell64
         //
         this.xrTableCell64.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.schoolname")});
         this.xrTableCell64.Name = "xrTableCell64";
         this.xrTableCell64.Text = "xrTableCell64";
         this.xrTableCell64.Weight = 0.49548313253515547D;
         //
         // xrTableCell38
         //
         this.xrTableCell38.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.dateplan", "{0:dddd}")});
         this.xrTableCell38.Name = "xrTableCell38";
         this.xrTableCell38.StylePriority.UseFont = false;
         this.xrTableCell38.StylePriority.UseTextAlignment = false;
         this.xrTableCell38.Text = "xrTableCell38";
         this.xrTableCell38.Weight = 0.18882349117811309D;
         //
         // ReportHeader1
         //
         this.ReportHeader1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable3});
         this.ReportHeader1.HeightF = 184.896F;
         this.ReportHeader1.Name = "ReportHeader1";
         //
         // xrTable3
         //
         this.xrTable3.BackColor = System.Drawing.Color.LightGray;
         this.xrTable3.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable3.ForeColor = System.Drawing.Color.Black;
         this.xrTable3.LocationFloat = new DevExpress.Utils.PointFloat(0F, 0F);
         this.xrTable3.Name = "xrTable3";
         this.xrTable3.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow9,
         this.xrTableRow8,
         this.xrTableRow6});
         this.xrTable3.SizeF = new System.Drawing.SizeF(1001F, 184.896F);
         this.xrTable3.StylePriority.UseBackColor = false;
         this.xrTable3.StylePriority.UseBorders = false;
         this.xrTable3.StylePriority.UseFont = false;
         this.xrTable3.StylePriority.UseForeColor = false;
         this.xrTable3.StylePriority.UseTextAlignment = false;
         this.xrTable3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow9
         //
         this.xrTableRow9.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell49,
         this.xrTableCell50,
         this.xrTableCell51});
         this.xrTableRow9.Name = "xrTableRow9";
         this.xrTableRow9.Weight = 0.29100583440217981D;
         //
         // xrTableCell49
         //
         this.xrTableCell49.Name = "xrTableCell49";
         this.xrTableCell49.Weight = 0.63737132735552893D;
         //
         // xrTableCell50
         //
         this.xrTableCell50.Name = "xrTableCell50";
         this.xrTableCell50.Text = "عــدد الأســالــيــب الإشــرافــيــة";
         this.xrTableCell50.Weight = 1.5584420329690143D;
         //
         // xrTableCell51
         //
         this.xrTableCell51.Name = "xrTableCell51";
         this.xrTableCell51.Weight = 0.80418663967545678D;
         //
         // xrTableRow8
         //
         this.xrTableRow8.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell48,
         this.xrTableCell61,
         this.xrTableCell62});
         this.xrTableRow8.Name = "xrTableRow8";
         this.xrTableRow8.Weight = 0.29100583440217981D;
         //
         // xrTableCell48
         //
         this.xrTableCell48.Name = "xrTableCell48";
         this.xrTableCell48.Weight = 1.3566524525928023D;
         //
         // xrTableCell61
         //
         this.xrTableCell61.Font = new System.Drawing.Font("Times New Roman", 10F, System.Drawing.FontStyle.Bold);
         this.xrTableCell61.Name = "xrTableCell61";
         this.xrTableCell61.StylePriority.UseFont = false;
         this.xrTableCell61.Text = "الدورات التربوية";
         this.xrTableCell61.Weight = 0.23975992430336812D;
         //
         // xrTableCell62
         //
         this.xrTableCell62.Name = "xrTableCell62";
         this.xrTableCell62.Weight = 1.4035876231038296D;
         //
         // xrTableRow6
         //
         this.xrTableRow6.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell47,
         this.xrTableCell5,
         this.xrTableCell6,
         this.xrTableCell15,
         this.xrTableCell8,
         this.xrTableCell17,
         this.xrTableCell19,
         this.xrTableCell41,
         this.xrTableCell27,
         this.xrTableCell42,
         this.xrTableCell28,
         this.xrTableCell43,
         this.xrTableCell29,
         this.xrTableCell44,
         this.xrTableCell30,
         this.xrTableCell45,
         this.xrTableCell46});
         this.xrTableRow6.Name = "xrTableRow6";
         this.xrTableRow6.Weight = 1.2962958456194795D;
         //
         // xrTableCell47
         //
         this.xrTableCell47.Name = "xrTableCell47";
         this.xrTableCell47.Text = "الملاحظات";
         this.xrTableCell47.Weight = 0.63737143401261465D;
         //
         // xrTableCell5
         //
         this.xrTableCell5.Angle = 270F;
         this.xrTableCell5.Name = "xrTableCell5";
         this.xrTableCell5.Text = "الوسائل التعليمية";
         this.xrTableCell5.Weight = 0.11988014123950042D;
         //
         // xrTableCell6
         //
         this.xrTableCell6.Angle = 270F;
         this.xrTableCell6.Name = "xrTableCell6";
         this.xrTableCell6.Text = "التجارب الميدانية";
         this.xrTableCell6.Weight = 0.11988014152420051D;
         //
         // xrTableCell15
         //
         this.xrTableCell15.Angle = 270F;
         this.xrTableCell15.Name = "xrTableCell15";
         this.xrTableCell15.Text = "الدراسات والبحوث";
         this.xrTableCell15.Weight = 0.11988014152420055D;
         //
         // xrTableCell8
         //
         this.xrTableCell8.Angle = 270F;
         this.xrTableCell8.Name = "xrTableCell8";
         this.xrTableCell8.Text = "المشاغل التربوية";
         this.xrTableCell8.Weight = 0.11988013953130711D;
         //
         // xrTableCell17
         //
         this.xrTableCell17.Angle = 270F;
         this.xrTableCell17.Name = "xrTableCell17";
         this.xrTableCell17.Text = "القراءات الموجهة";
         this.xrTableCell17.Weight = 0.11988013953130708D;
         //
         // xrTableCell19
         //
         this.xrTableCell19.Angle = 270F;
         this.xrTableCell19.Name = "xrTableCell19";
         this.xrTableCell19.Text = "النشرات التربوية";
         this.xrTableCell19.Weight = 0.11988014156613194D;
         //
         // xrTableCell41
         //
         this.xrTableCell41.Angle = 270F;
         this.xrTableCell41.Name = "xrTableCell41";
         this.xrTableCell41.Text = "للمعلمين";
         this.xrTableCell41.Weight = 0.11988014156613196D;
         //
         // xrTableCell27
         //
         this.xrTableCell27.Angle = 270F;
         this.xrTableCell27.Name = "xrTableCell27";
         this.xrTableCell27.StylePriority.UseTextAlignment = false;
         this.xrTableCell27.Text = "شخصية ";
         this.xrTableCell27.Weight = 0.11988014156613203D;
         //
         // xrTableCell42
         //
         this.xrTableCell42.Angle = 270F;
         this.xrTableCell42.Name = "xrTableCell42";
         this.xrTableCell42.Text = "اللقاءات التربوية";
         this.xrTableCell42.Weight = 0.11988014156613198D;
         //
         // xrTableCell28
         //
         this.xrTableCell28.Angle = 270F;
         this.xrTableCell28.Name = "xrTableCell28";
         this.xrTableCell28.Text = "الدروس التطبيقية";
         this.xrTableCell28.Weight = 0.11988014048332149D;
         //
         // xrTableCell43
         //
         this.xrTableCell43.Angle = 270F;
         this.xrTableCell43.Name = "xrTableCell43";
         this.xrTableCell43.StylePriority.UseTextAlignment = false;
         this.xrTableCell43.Text = "الزيارات المتبادلة";
         this.xrTableCell43.Weight = 0.11988014048332146D;
         //
         // xrTableCell29
         //
         this.xrTableCell29.Angle = 270F;
         this.xrTableCell29.Name = "xrTableCell29";
         this.xrTableCell29.Text = "الزيارات التقويمية";
         this.xrTableCell29.Weight = 0.11988014246005195D;
         //
         // xrTableCell44
         //
         this.xrTableCell44.Angle = 270F;
         this.xrTableCell44.Name = "xrTableCell44";
         this.xrTableCell44.Text = "الزيارات الإشرافية";
         this.xrTableCell44.Weight = 0.11988014246005171D;
         //
         // xrTableCell30
         //
         this.xrTableCell30.Angle = 270F;
         this.xrTableCell30.Name = "xrTableCell30";
         this.xrTableCell30.Text = "عدد معلمي التخصص";
         this.xrTableCell30.Weight = 0.11988014066892956D;
         //
         // xrTableCell45
         //
         this.xrTableCell45.Name = "xrTableCell45";
         this.xrTableCell45.Text = "الخطة المنفذة";
         this.xrTableCell45.Weight = 0.49548327755802379D;
         //
         // xrTableCell46
         //
         this.xrTableCell46.Angle = 270F;
         this.xrTableCell46.Name = "xrTableCell46";
         this.xrTableCell46.Text = "الـيـوم";
         this.xrTableCell46.Weight = 0.18882331225864191D;
         //
         // ReportFooter2
         //
         this.ReportFooter2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable5});
         this.ReportFooter2.HeightF = 79.16666F;
         this.ReportFooter2.Name = "ReportFooter2";
         //
         // xrTable5
         //
         this.xrTable5.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
         | DevExpress.XtraPrinting.BorderSide.Right)
         | DevExpress.XtraPrinting.BorderSide.Bottom)));
         this.xrTable5.Font = new System.Drawing.Font("Times New Roman", 9F);
         this.xrTable5.LocationFloat = new DevExpress.Utils.PointFloat(0F, 19.16666F);
         this.xrTable5.Name = "xrTable5";
         this.xrTable5.Rows.AddRange(new DevExpress.XtraReports.UI.XRTableRow[] {
         this.xrTableRow10,
         this.xrTableRow11});
         this.xrTable5.SizeF = new System.Drawing.SizeF(1001F, 60F);
         this.xrTable5.StylePriority.UseBorders = false;
         this.xrTable5.StylePriority.UseFont = false;
         this.xrTable5.StylePriority.UseTextAlignment = false;
         this.xrTable5.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xrTableRow10
         //
         this.xrTableRow10.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell21,
         this.xrTableCell25,
         this.xrTableCell40,
         this.xrTableCell66,
         this.xrTableCell67,
         this.xrTableCell68,
         this.xrTableCell69,
         this.xrTableCell70,
         this.xrTableCell71,
         this.xrTableCell72,
         this.xrTableCell73,
         this.xrTableCell74,
         this.xrTableCell75,
         this.xrTableCell76,
         this.xrTableCell78});
         this.xrTableRow10.Name = "xrTableRow10";
         this.xrTableRow10.Weight = 1D;
         //
         // xrTableCell21
         //
         this.xrTableCell21.Name = "xrTableCell21";
         this.xrTableCell21.Weight = 0.63737150838966661D;
         //
         // xrTableCell25
         //
         this.xrTableCell25.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.wasaeel")});
         this.xrTableCell25.Name = "xrTableCell25";
         xrSummary1.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell25.Summary = xrSummary1;
         this.xrTableCell25.Text = "xrTableCell25";
         this.xrTableCell25.Weight = 0.11988022373544331D;
         //
         // xrTableCell40
         //
         this.xrTableCell40.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.tagareb")});
         this.xrTableCell40.Name = "xrTableCell40";
         xrSummary2.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell40.Summary = xrSummary2;
         this.xrTableCell40.Text = "xrTableCell40";
         this.xrTableCell40.Weight = 0.1198802237354433D;
         //
         // xrTableCell66
         //
         this.xrTableCell66.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.drasat")});
         this.xrTableCell66.Multiline = true;
         this.xrTableCell66.Name = "xrTableCell66";
         this.xrTableCell66.StylePriority.UseTextAlignment = false;
         xrSummary3.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell66.Summary = xrSummary3;
         this.xrTableCell66.Text = "xrTableCell66";
         this.xrTableCell66.Weight = 0.11988001794755371D;
         //
         // xrTableCell67
         //
         this.xrTableCell67.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.mashael")});
         this.xrTableCell67.Name = "xrTableCell67";
         xrSummary4.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell67.Summary = xrSummary4;
         this.xrTableCell67.Text = "xrTableCell67";
         this.xrTableCell67.Weight = 0.11988022546941772D;
         //
         // xrTableCell68
         //
         this.xrTableCell68.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.reads")});
         this.xrTableCell68.Multiline = true;
         this.xrTableCell68.Name = "xrTableCell68";
         this.xrTableCell68.StylePriority.UseTextAlignment = false;
         xrSummary5.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell68.Summary = xrSummary5;
         this.xrTableCell68.Text = "xrTableCell68";
         this.xrTableCell68.Weight = 0.11987995108556496D;
         //
         // xrTableCell69
         //
         this.xrTableCell69.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.nashraat")});
         this.xrTableCell69.Name = "xrTableCell69";
         xrSummary6.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell69.Summary = xrSummary6;
         this.xrTableCell69.Text = "xrTableCell69";
         this.xrTableCell69.Weight = 0.11988022101912341D;
         //
         // xrTableCell70
         //
         this.xrTableCell70.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trainteacher")});
         this.xrTableCell70.Multiline = true;
         this.xrTableCell70.Name = "xrTableCell70";
         this.xrTableCell70.StylePriority.UseTextAlignment = false;
         xrSummary7.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell70.Summary = xrSummary7;
         this.xrTableCell70.Text = "xrTableCell70";
         this.xrTableCell70.Weight = 0.11988022101912341D;
         //
         // xrTableCell71
         //
         this.xrTableCell71.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trainperson")});
         this.xrTableCell71.Name = "xrTableCell71";
         xrSummary8.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell71.Summary = xrSummary8;
         this.xrTableCell71.Text = "xrTableCell71";
         this.xrTableCell71.Weight = 0.11988012687753238D;
         //
         // xrTableCell72
         //
         this.xrTableCell72.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.trbowy")});
         this.xrTableCell72.Multiline = true;
         this.xrTableCell72.Name = "xrTableCell72";
         this.xrTableCell72.StylePriority.UseTextAlignment = false;
         xrSummary9.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell72.Summary = xrSummary9;
         this.xrTableCell72.Text = "xrTableCell72";
         this.xrTableCell72.Weight = 0.11988010401221144D;
         //
         // xrTableCell73
         //
         this.xrTableCell73.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.droos")});
         this.xrTableCell73.Name = "xrTableCell73";
         xrSummary10.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell73.Summary = xrSummary10;
         this.xrTableCell73.Text = "xrTableCell73";
         this.xrTableCell73.Weight = 0.11988014046122275D;
         //
         // xrTableCell74
         //
         this.xrTableCell74.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.motabadla")});
         this.xrTableCell74.Multiline = true;
         this.xrTableCell74.Name = "xrTableCell74";
         this.xrTableCell74.StylePriority.UseTextAlignment = false;
         xrSummary11.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell74.Summary = xrSummary11;
         this.xrTableCell74.Text = "xrTableCell74";
         this.xrTableCell74.Weight = 0.11988014046122286D;
         //
         // xrTableCell75
         //
         this.xrTableCell75.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.takweem")});
         this.xrTableCell75.Name = "xrTableCell75";
         xrSummary12.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell75.Summary = xrSummary12;
         this.xrTableCell75.Text = "xrTableCell75";
         this.xrTableCell75.Weight = 0.11988015158904958D;
         //
         // xrTableCell76
         //
         this.xrTableCell76.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.zearat")});
         this.xrTableCell76.Name = "xrTableCell76";
         this.xrTableCell76.StylePriority.UseTextAlignment = false;
         xrSummary13.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell76.Summary = xrSummary13;
         this.xrTableCell76.Text = "xrTableCell76";
         this.xrTableCell76.Weight = 0.11987999153180218D;
         //
         // xrTableCell78
         //
         this.xrTableCell78.BackColor = System.Drawing.Color.LightGray;
         this.xrTableCell78.Name = "xrTableCell78";
         this.xrTableCell78.StylePriority.UseBackColor = false;
         this.xrTableCell78.Text = "مجموع الأساليب المنفذة";
         this.xrTableCell78.Weight = 0.80418675266562234D;
         //
         // xrTableRow11
         //
         this.xrTableRow11.Cells.AddRange(new DevExpress.XtraReports.UI.XRTableCell[] {
         this.xrTableCell18,
         this.xrTableCell77,
         this.xrTableCell79,
         this.xrTableCell80,
         this.xrTableCell81,
         this.xrTableCell82,
         this.xrTableCell83,
         this.xrTableCell84,
         this.xrTableCell85,
         this.xrTableCell86,
         this.xrTableCell87,
         this.xrTableCell88,
         this.xrTableCell89,
         this.xrTableCell90,
         this.xrTableCell91});
         this.xrTableRow11.Name = "xrTableRow11";
         this.xrTableRow11.Weight = 1D;
         //
         // xrTableCell18
         //
         this.xrTableCell18.Name = "xrTableCell18";
         this.xrTableCell18.Weight = 0.63737150838966661D;
         //
         // xrTableCell77
         //
         this.xrTableCell77.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_wasaeel")});
         this.xrTableCell77.Name = "xrTableCell77";
         xrSummary14.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell77.Summary = xrSummary14;
         this.xrTableCell77.Text = "xrTableCell77";
         this.xrTableCell77.Weight = 0.11988022373544331D;
         //
         // xrTableCell79
         //
         this.xrTableCell79.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_tagareb")});
         this.xrTableCell79.Name = "xrTableCell79";
         xrSummary15.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell79.Summary = xrSummary15;
         this.xrTableCell79.Text = "xrTableCell79";
         this.xrTableCell79.Weight = 0.1198802237354433D;
         //
         // xrTableCell80
         //
         this.xrTableCell80.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_drasat")});
         this.xrTableCell80.Name = "xrTableCell80";
         xrSummary16.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell80.Summary = xrSummary16;
         this.xrTableCell80.Text = "xrTableCell80";
         this.xrTableCell80.Weight = 0.11988001794755371D;
         //
         // xrTableCell81
         //
         this.xrTableCell81.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_mashael")});
         this.xrTableCell81.Name = "xrTableCell81";
         xrSummary17.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell81.Summary = xrSummary17;
         this.xrTableCell81.Text = "xrTableCell81";
         this.xrTableCell81.Weight = 0.11988022546941772D;
         //
         // xrTableCell82
         //
         this.xrTableCell82.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_reads")});
         this.xrTableCell82.Name = "xrTableCell82";
         xrSummary18.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell82.Summary = xrSummary18;
         this.xrTableCell82.Text = "xrTableCell82";
         this.xrTableCell82.Weight = 0.11987995108556496D;
         //
         // xrTableCell83
         //
         this.xrTableCell83.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_nashraat")});
         this.xrTableCell83.Name = "xrTableCell83";
         xrSummary19.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell83.Summary = xrSummary19;
         this.xrTableCell83.Text = "xrTableCell83";
         this.xrTableCell83.Weight = 0.11988022101912341D;
         //
         // xrTableCell84
         //
         this.xrTableCell84.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_trainteacher")});
         this.xrTableCell84.Name = "xrTableCell84";
         xrSummary20.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell84.Summary = xrSummary20;
         this.xrTableCell84.Text = "xrTableCell84";
         this.xrTableCell84.Weight = 0.11988022101912341D;
         //
         // xrTableCell85
         //
         this.xrTableCell85.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_trainperson")});
         this.xrTableCell85.Name = "xrTableCell85";
         xrSummary21.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell85.Summary = xrSummary21;
         this.xrTableCell85.Text = "xrTableCell85";
         this.xrTableCell85.Weight = 0.11988012687753238D;
         //
         // xrTableCell86
         //
         this.xrTableCell86.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_trbowy")});
         this.xrTableCell86.Name = "xrTableCell86";
         xrSummary22.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell86.Summary = xrSummary22;
         this.xrTableCell86.Text = "xrTableCell86";
         this.xrTableCell86.Weight = 0.11988010401221144D;
         //
         // xrTableCell87
         //
         this.xrTableCell87.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_droos")});
         this.xrTableCell87.Name = "xrTableCell87";
         xrSummary23.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell87.Summary = xrSummary23;
         this.xrTableCell87.Text = "xrTableCell87";
         this.xrTableCell87.Weight = 0.11988014046122275D;
         //
         // xrTableCell88
         //
         this.xrTableCell88.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_motabadla")});
         this.xrTableCell88.Name = "xrTableCell88";
         xrSummary24.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell88.Summary = xrSummary24;
         this.xrTableCell88.Text = "xrTableCell88";
         this.xrTableCell88.Weight = 0.11988014046122286D;
         //
         // xrTableCell89
         //
         this.xrTableCell89.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_takweem")});
         this.xrTableCell89.Name = "xrTableCell89";
         xrSummary25.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell89.Summary = xrSummary25;
         this.xrTableCell89.Text = "xrTableCell89";
         this.xrTableCell89.Weight = 0.11988015158904958D;
         //
         // xrTableCell90
         //
         this.xrTableCell90.DataBindings.AddRange(new DevExpress.XtraReports.UI.XRBinding[] {
         new DevExpress.XtraReports.UI.XRBinding("Text", null, "XRep07Sub1.c_zearat")});
         this.xrTableCell90.Name = "xrTableCell90";
         xrSummary26.Running = DevExpress.XtraReports.UI.SummaryRunning.Report;
         this.xrTableCell90.Summary = xrSummary26;
         this.xrTableCell90.Text = "xrTableCell90";
         this.xrTableCell90.Weight = 0.11987999153180218D;
         //
         // xrTableCell91
         //
         this.xrTableCell91.BackColor = System.Drawing.Color.LightGray;
         this.xrTableCell91.Name = "xrTableCell91";
         this.xrTableCell91.StylePriority.UseBackColor = false;
         this.xrTableCell91.Text = "عدد المستفيدين";
         this.xrTableCell91.Weight = 0.80418675266562234D;
         //
         // DetailReport1
         //
         this.DetailReport1.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail2,
         this.ReportHeader2,
         this.ReportFooter1});
         this.DetailReport1.DataMember = "XRep07Sub2";
         this.DetailReport1.DataSource = this.dsTEFollowUp1;
         this.DetailReport1.Level = 1;
         this.DetailReport1.Name = "DetailReport1";
         //
         // Detail2
         //
         this.Detail2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable2});
         this.Detail2.HeightF = 25F;
         this.Detail2.Name = "Detail2";
         //
         // ReportHeader2
         //
         this.ReportHeader2.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrTable6,
         this.xrLabel1});
         this.ReportHeader2.HeightF = 53.125F;
         this.ReportHeader2.Name = "ReportHeader2";
         //
         // xrLabel1
         //
         this.xrLabel1.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
         this.xrLabel1.LocationFloat = new DevExpress.Utils.PointFloat(372.6697F, 5.125014F);
         this.xrLabel1.Name = "xrLabel1";
         this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel1.SizeF = new System.Drawing.SizeF(262.2193F, 23F);
         this.xrLabel1.StylePriority.UseFont = false;
         this.xrLabel1.StylePriority.UseTextAlignment = false;
         this.xrLabel1.Text = "مهام مكلف بها المشرف التربوي خلال الأسبوع";
         this.xrLabel1.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // ReportFooter1
         //
         this.ReportFooter1.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
         this.xrLabel2,
         this.xrLabel3});
         this.ReportFooter1.HeightF = 52.08333F;
         this.ReportFooter1.Name = "ReportFooter1";
         //
         // xrLabel2
         //
         this.xrLabel2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
         this.xrLabel2.LocationFloat = new DevExpress.Utils.PointFloat(10.00001F, 10.00001F);
         this.xrLabel2.Name = "xrLabel2";
         this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel2.SizeF = new System.Drawing.SizeF(119.7917F, 23F);
         this.xrLabel2.StylePriority.UseFont = false;
         this.xrLabel2.Text = "التوقيع";
         //
         // xrLabel3
         //
         this.xrLabel3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold);
         this.xrLabel3.LocationFloat = new DevExpress.Utils.PointFloat(738.7807F, 10.00001F);
         this.xrLabel3.Name = "xrLabel3";
         this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
         this.xrLabel3.SizeF = new System.Drawing.SizeF(262.2193F, 23F);
         this.xrLabel3.StylePriority.UseFont = false;
         this.xrLabel3.StylePriority.UseTextAlignment = false;
         this.xrLabel3.Text = "المشرف التربوي";
         this.xrLabel3.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleCenter;
         //
         // xRep07Sub1TableAdapter1
         //
         this.xRep07Sub1TableAdapter1.ClearBeforeFill = true;
         //
         // xRep07Sub2TableAdapter1
         //
         this.xRep07Sub2TableAdapter1.ClearBeforeFill = true;
         //
         // XtraReport07
         //
         this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
         this.Detail,
         this.TopMargin,
         this.BottomMargin,
         this.ReportHeader,
         this.ReportFooter,
         this.DetailReport,
         this.DetailReport1});
         this.DataMember = "XRep05";
         this.DataSource = this.dsTEFollowUp1;
         this.Landscape = true;
         this.Margins = new System.Drawing.Printing.Margins(50, 49, 19, 62);
         this.PageHeight = 850;
         this.PageWidth = 1100;
         this.TextAlignment = DevExpress.XtraPrinting.TextAlignment.MiddleRight;
         this.Version = "12.2";
         this.DataSourceDemanded += new System.EventHandler<System.EventArgs>(this.XtraReport01_DataSourceDemanded);
         ((System.ComponentModel.ISupportInitialize)(this.dsTEFollowUp1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable2)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable6)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable1)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable4)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable3)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.xrTable5)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
 }